9 lines
165 B
Ruby
9 lines
165 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DeployTokens
|
|
class CreateService < BaseService
|
|
def execute
|
|
@project.deploy_tokens.create(params)
|
|
end
|
|
end
|
|
end
|