Add temporary parameter to ignore state with oauth2 basic

This commit is contained in:
Robin Ward 2017-05-08 10:53:46 -04:00
parent 4966993246
commit e2e999014f
3 changed files with 3 additions and 1 deletions

View File

@ -14,4 +14,5 @@ en:
oauth2_send_auth_header: "Send the token as an HTTP Authorization header"
oauth2_debug_auth: "Include rich debugging information in your logs"
oauth2_authorize_options: "When authorizing request these options"
oauth2_ignore_state: "Don't validate the state parameter. This will be removed shortly!"

View File

@ -14,6 +14,7 @@ login:
oauth2_email_verified: false
oauth2_send_auth_header: true
oauth2_debug_auth: false
oauth2_ignore_state: true
oauth2_authorize_options:
default: 'scope'
type: list

View File

@ -29,7 +29,7 @@ class OAuth2BasicAuthenticator < ::Auth::OAuth2Authenticator
opts = env['omniauth.strategy'].options
opts[:client_id] = SiteSetting.oauth2_client_id
opts[:client_secret] = SiteSetting.oauth2_client_secret
opts[:provider_ignores_state] = true
opts[:provider_ignores_state] = SiteSetting.oauth2_ignore_state
opts[:client_options] = {
authorize_url: SiteSetting.oauth2_authorize_url,
token_url: SiteSetting.oauth2_token_url