summaryrefslogtreecommitdiff
path: root/app/controllers/oauth/authorized_applications_controller.rb
blob: 4193ac1139915ad60a2b257db01d78e445e16386 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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, notice: I18n.t(:notice, scope: [:doorkeeper, :flash, :authorized_applications, :destroy])
  end
end