debian-mirror-gitlab/app/controllers/groups/deploy_tokens_controller.rb

13 lines
319 B
Ruby
Raw Normal View History

2020-04-08 14:13:33 +05:30
# frozen_string_literal: true
class Groups::DeployTokensController < Groups::ApplicationController
before_action :authorize_admin_group!
def revoke
@token = @group.deploy_tokens.find(params[:id])
@token.revoke!
2020-04-25 10:58:03 +05:30
redirect_to group_settings_repository_path(@group, anchor: 'js-deploy-tokens')
2020-04-08 14:13:33 +05:30
end
end