class OauthController < ApplicationController
include OAuth::Controllers::ProviderController
- layout 'slim'
+ layout 'site'
def login_required
authorize_web
redirect_to oauth_clients_url(:display_name => @token.user.display_name)
end
-protected
+ protected
def oauth1_authorize
unless @token
- render :action=>"authorize_failure"
+ render :action => "authorize_failure"
return
end
end
else
@token.invalidate!
+ @message = t("oauth.oauthorize_failure.denied", :app_name => @token.client_application.name)
render :action => "authorize_failure"
end
end
else
+ @message = t "oauth.oauthorize_failure.invalid"
render :action => "authorize_failure"
end
end