15 lines
360 B
Ruby
15 lines
360 B
Ruby
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
class GithubDatabase < OmniAuth::Strategies::GitHub
|
|
option :name, 'github'
|
|
|
|
def initialize(app, *args, &block)
|
|
|
|
# database lookup
|
|
config = Setting.get('auth_github_credentials') || {}
|
|
args[0] = config['app_id']
|
|
args[1] = config['app_secret']
|
|
super
|
|
end
|
|
|
|
end
|