11 lines
271 B
Ruby
11 lines
271 B
Ruby
|
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
|