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

9 lines
349 B
Ruby
Raw Normal View History

2014-12-19 14:15:29 +00:00
class Oauth::AuthorizedApplicationsController < Doorkeeper::AuthorizedApplicationsController
layout "profile"
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 14:15:29 +00:00
end
end