summaryrefslogtreecommitdiff
path: root/app/controllers/groups/deploy_tokens_controller.rb
blob: 79152bf2695eeb876458d1f1b808875d9345943b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

class Groups::DeployTokensController < Groups::ApplicationController
  before_action :authorize_destroy_deploy_token!

  feature_category :continuous_delivery

  def revoke
    @token = @group.deploy_tokens.find(params[:id])
    @token.revoke!

    redirect_to group_settings_repository_path(@group, anchor: 'js-deploy-tokens')
  end
end