mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
13 lines
325 B
Ruby
13 lines
325 B
Ruby
# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class UserAgentTestBearerAuthController < UserAgentTestController
|
|
before_action :authenticate
|
|
|
|
private
|
|
|
|
def authenticate
|
|
authenticate_or_request_with_http_token do |token, _options|
|
|
token == ENV['CI_BEARER_TOKEN']
|
|
end
|
|
end
|
|
end
|