summaryrefslogtreecommitdiff
path: root/app/controllers/oauth/authorized_applications_controller.rb
blob: 656107d2b2631f6bde75a63feb776d55d4afc6cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Oauth::AuthorizedApplicationsController < Doorkeeper::AuthorizedApplicationsController
  include PageLayoutHelper

  layout 'profile'

  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])
  end
end