gitlab-org--gitlab-foss/app/controllers/oauth/authorized_applications_controller.rb

17 lines
480 B
Ruby
Raw Normal View History

2014-12-19 09:15:29 -05:00
class Oauth::AuthorizedApplicationsController < Doorkeeper::AuthorizedApplicationsController
2015-04-30 14:02:21 -04:00
before_action :set_title
2014-12-19 09:15:29 -05:00
def destroy
Doorkeeper::AccessToken.revoke_all_for(params[:id], current_resource_owner)
redirect_to applications_profile_url, notice: I18n.t(:notice, scope: [:doorkeeper, :flash, :authorized_applications, :destroy])
2014-12-19 09:15:29 -05:00
end
2015-04-30 13:06:18 -04:00
private
def set_title
@title = "Profile"
@title_url = profile_path
@sidebar = "profile"
end
end