debian-mirror-gitlab/app/services/deploy_keys/create_service.rb

12 lines
264 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module DeployKeys
class CreateService < Keys::BaseService
2019-02-15 15:39:39 +05:30
def execute(project: nil)
2018-03-17 18:26:18 +05:30
DeployKey.create(params.merge(user: user))
end
end
end
2019-12-04 20:38:33 +05:30
DeployKeys::CreateService.prepend_if_ee('::EE::DeployKeys::CreateService')