2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
class Oauth::AuthorizedApplicationsController < Doorkeeper::AuthorizedApplicationsController
|
2015-09-11 14:41:01 +05:30
|
|
|
include PageLayoutHelper
|
|
|
|
|
|
|
|
layout 'profile'
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2020-05-01 12:34:13 +05:30
|
|
|
def index
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { render "errors/not_found", layout: "errors", status: :not_found }
|
|
|
|
format.json { render json: "", status: :not_found }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def destroy
|
2015-09-11 14:41:01 +05:30
|
|
|
if params[:token_id].present?
|
|
|
|
current_resource_owner.oauth_authorized_tokens.find(params[:token_id]).revoke
|
|
|
|
else
|
2020-08-18 19:51:02 +05:30
|
|
|
Doorkeeper::Application.revoke_tokens_and_grants_for(params[:id], current_resource_owner)
|
2015-09-11 14:41:01 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
redirect_to applications_profile_url,
|
2019-12-26 22:10:19 +05:30
|
|
|
status: :found,
|
2017-09-10 17:25:29 +05:30
|
|
|
notice: I18n.t(:notice, scope: [:doorkeeper, :flash, :authorized_applications, :destroy])
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
end
|