Welcome to mirror list, hosted at ThFree Co, Russian Federation.

deploy_tokens_controller.rb « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 830b1f4fe4af09364c761f36deb4e85f59cd9b76 (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_repository_path(project, anchor: 'js-deploy-tokens')
  end
end