mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-20 18:16:45 +10:00
11 lines
377 B
Ruby
11 lines
377 B
Ruby
class Oauth::AuthorizedApplicationsController < Doorkeeper::AuthorizedApplicationsController
|
|
include PageLayoutHelper
|
|
|
|
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])
|
|
end
|
|
end
|