Welcome to mirror list, hosted at ThFree Co, Russian Federation.

deploy_tokens_controller.rb « groups « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ef22aa33dc38a62d586951d4f3823bc7678d08f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class Groups::DeployTokensController < Groups::ApplicationController
  before_action :authorize_destroy_deploy_token!

  feature_category :continuous_delivery

  def revoke
    Groups::DeployTokens::RevokeService.new(@group, current_user, params).execute

    redirect_to group_settings_repository_path(@group, anchor: 'js-deploy-tokens')
  end
end