12ee2753c1
Enables frozen string for some vestigial files as well as the following: * app/controllers/projects/**/*.rb * app/controllers/sherlock/**/*.rb * app/controllers/snippets/**/*.rb * app/controllers/users/**/*.rb Partially addresses #47424.
12 lines
330 B
Ruby
12 lines
330 B
Ruby
# frozen_string_literal: true
|
|
|
|
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, anchor: 'js-deploy-tokens')
|
|
end
|
|
end
|