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

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

module Projects
  module DeployTokens
    class CreateService < BaseService
      include DeployTokenMethods

      def execute
        create_deploy_token_for(@project, params)
      end
    end
  end
end