trabajo-afectivo/lib/omniauth/github_database.rb

16 lines
361 B
Ruby
Raw Permalink Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://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