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

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

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

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