@token.invalidate!
flash[:notice] = t('oauth.revoke.flash', :application => @token.client_application.name)
end
- redirect_to :controller => 'oauth_clients', :action => 'index'
+ redirect_to oauth_clients_url(:display_name => @token.user.display_name)
end
protected
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