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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
806 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 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
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::Application.revoke_tokens_and_grants_for(params[:id], current_resource_owner)
end
redirect_to applications_profile_url,
status: :found,
notice: I18n.t(:notice, scope: [:doorkeeper, :flash, :authorized_applications, :destroy])
2014-12-19 14:15:29 +00:00
end
end