16 lines
445 B
Ruby
16 lines
445 B
Ruby
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
class GitLabDatabase < OmniAuth::Strategies::GitLab
|
|
option :name, 'gitlab'
|
|
|
|
def initialize(app, *args, &block)
|
|
|
|
# database lookup
|
|
config = Setting.get('auth_gitlab_credentials') || {}
|
|
args[0] = config['app_id']
|
|
args[1] = config['app_secret']
|
|
args[2][:client_options] = args[2][:client_options].merge(config.symbolize_keys)
|
|
super
|
|
end
|
|
|
|
end
|