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

13 lines
330 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
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!
2020-04-25 10:58:03 +05:30
redirect_to project_settings_repository_path(project, anchor: 'js-deploy-tokens')
2018-05-09 12:01:36 +05:30
end
end