12345678910111213 |
- 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
|