debian-mirror-gitlab/app/services/deploy_keys/create_service.rb
2018-03-17 18:26:18 +05:30

8 lines
143 B
Ruby

module DeployKeys
class CreateService < Keys::BaseService
def execute
DeployKey.create(params.merge(user: user))
end
end
end