debian-mirror-gitlab/app/controllers/projects/deploy_tokens_controller.rb

11 lines
299 B
Ruby
Raw Normal View History

2018-05-09 12:01:36 +05:30
class Projects::DeployTokensController < Projects::ApplicationController
before_action :authorize_admin_project!
def revoke
@token = @project.deploy_tokens.find(params[:id])
@token.revoke!
2018-11-20 20:47:30 +05:30
redirect_to project_settings_repository_path(project, anchor: 'js-deploy-tokens')
2018-05-09 12:01:36 +05:30
end
end