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

8 lines
143 B
Ruby
Raw Normal View History

2017-09-15 11:35:24 -04:00
module DeployKeys
class CreateService < Keys::BaseService
def execute
DeployKey.create(params.merge(user: user))
end
end
end