Mark non-action methods as protected
This commit is contained in:
parent
fbbabeff1e
commit
bda8544d94
1 changed files with 11 additions and 11 deletions
|
@ -5,6 +5,17 @@ class OauthController < ApplicationController
|
|||
|
||||
layout "site"
|
||||
|
||||
def revoke
|
||||
@token = current_user.oauth_tokens.find_by :token => params[:token]
|
||||
if @token
|
||||
@token.invalidate!
|
||||
flash[:notice] = t(".flash", :application => @token.client_application.name)
|
||||
end
|
||||
redirect_to oauth_clients_url(:display_name => @token.user.display_name)
|
||||
end
|
||||
|
||||
protected
|
||||
|
||||
def login_required
|
||||
authorize_web
|
||||
set_locale
|
||||
|
@ -26,17 +37,6 @@ class OauthController < ApplicationController
|
|||
any_auth
|
||||
end
|
||||
|
||||
def revoke
|
||||
@token = current_user.oauth_tokens.find_by :token => params[:token]
|
||||
if @token
|
||||
@token.invalidate!
|
||||
flash[:notice] = t(".flash", :application => @token.client_application.name)
|
||||
end
|
||||
redirect_to oauth_clients_url(:display_name => @token.user.display_name)
|
||||
end
|
||||
|
||||
protected
|
||||
|
||||
def oauth1_authorize
|
||||
override_content_security_policy_directives(:form_action => []) if CSP_ENFORCE || defined?(CSP_REPORT_URL)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue