gitlab-org--gitlab-foss/app/services/deploy_tokens/create_service.rb

10 lines
165 B
Ruby

# frozen_string_literal: true
module DeployTokens
class CreateService < BaseService
def execute
@project.deploy_tokens.create(params)
end
end
end