gitlab-org--gitlab-foss/app/controllers/oauth/authorized_applications_con...

20 lines
591 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2014-12-19 14:15:29 +00:00
class Oauth::AuthorizedApplicationsController < Doorkeeper::AuthorizedApplicationsController
include PageLayoutHelper
layout 'profile'
2014-12-19 14:15:29 +00:00
def destroy
if params[:token_id].present?
current_resource_owner.oauth_authorized_tokens.find(params[:token_id]).revoke
else
Doorkeeper::AccessToken.revoke_all_for(params[:id], current_resource_owner)
end
redirect_to applications_profile_url,
status: 302,
notice: I18n.t(:notice, scope: [:doorkeeper, :flash, :authorized_applications, :destroy])
2014-12-19 14:15:29 +00:00
end
end