diff options
author | Eugen <eugen@zeonfederated.com> | 2017-04-08 11:36:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-08 11:36:43 +0200 |
commit | c141f0a886c03ff1edf99e36c6d50c4bbdf10418 (patch) | |
tree | fd6217860790e46f532cc99802353cc33120d2b8 /app/controllers/oauth/authorizations_controller.rb | |
parent | 55d03da303dcc2d0cdf0d642534d0f6337e252c9 (diff) | |
parent | 40703b96fa6ccc2b53a266ab67bbb61ce4b64160 (diff) |
Merge pull request #1216 from tootsuite/fix-default-locale-regression
Fix #1165 - Default locale no longer breaks form submissions
Diffstat (limited to 'app/controllers/oauth/authorizations_controller.rb')
-rw-r--r-- | app/controllers/oauth/authorizations_controller.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/oauth/authorizations_controller.rb b/app/controllers/oauth/authorizations_controller.rb index cdbfde0fb..e9cdf9fa8 100644 --- a/app/controllers/oauth/authorizations_controller.rb +++ b/app/controllers/oauth/authorizations_controller.rb @@ -1,13 +1,13 @@ # frozen_string_literal: true class Oauth::AuthorizationsController < Doorkeeper::AuthorizationsController - include Localized - skip_before_action :authenticate_resource_owner! before_action :store_current_location before_action :authenticate_resource_owner! + include Localized + private def store_current_location |