gitlab-org--gitlab-foss/app/controllers/oauth/authorized_applications_controller.rb

8 lines
342 B
Ruby
Raw Normal View History

2014-12-19 09:15:29 -05:00
class Oauth::AuthorizedApplicationsController < Doorkeeper::AuthorizedApplicationsController
layout "profile"
def destroy
Doorkeeper::AccessToken.revoke_all_for params[:id], current_resource_owner
redirect_to profile_account_url, notice: I18n.t(:notice, scope: [:doorkeeper, :flash, :authorized_applications, :destroy])
end
end