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

14 lines
288 B
Ruby

# frozen_string_literal: true
module Keys
class CreateService < ::Keys::BaseService
def execute
key = user.keys.create(params)
notification_service.new_key(key) if key.persisted?
key
end
end
end
Keys::CreateService.prepend_if_ee('EE::Keys::CreateService')