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: 2f91b8f36de452c9d907e4ac368a57a341a75d99 (plain)
1
2
3
4
5
6
7
8
9
10
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)
  end
end