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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
395 B
Ruby
Raw Normal View History

2020-04-08 14:13:33 +05:30
# frozen_string_literal: true
class Groups::DeployTokensController < Groups::ApplicationController
2020-07-02 01:45:43 +05:30
before_action :authorize_destroy_deploy_token!
2020-04-08 14:13:33 +05:30
2021-01-03 14:25:43 +05:30
feature_category :continuous_delivery
2022-07-16 23:28:13 +05:30
urgency :low
2021-01-03 14:25:43 +05:30
2020-04-08 14:13:33 +05:30
def revoke
2022-05-07 20:08:51 +05:30
Groups::DeployTokens::RevokeService.new(@group, current_user, params).execute
2020-04-08 14:13:33 +05:30
2020-04-25 10:58:03 +05:30
redirect_to group_settings_repository_path(@group, anchor: 'js-deploy-tokens')
2020-04-08 14:13:33 +05:30
end
end