debian-mirror-gitlab/app/services/deploy_tokens/create_service.rb
2018-11-18 11:00:15 +05:30

10 lines
165 B
Ruby

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