15 lines
		
	
	
		
			371 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			371 B
		
	
	
	
		
			Ruby
		
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class Projects::DeployTokensController < Projects::ApplicationController
 | 
						|
  before_action :authorize_admin_project!
 | 
						|
 | 
						|
  feature_category :continuous_delivery
 | 
						|
 | 
						|
  def revoke
 | 
						|
    @token = @project.deploy_tokens.find(params[:id])
 | 
						|
    @token.revoke!
 | 
						|
 | 
						|
    redirect_to project_settings_repository_path(project, anchor: 'js-deploy-tokens')
 | 
						|
  end
 | 
						|
end
 |