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

class Projects::DeployTokensController < Projects::ApplicationController
  before_action :authorize_admin_project!

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

    redirect_to project_settings_ci_cd_path(project, anchor: 'js-deploy-tokens')
  end
end