debian-mirror-gitlab/app/services/keys/create_service.rb
2021-04-29 21:17:54 +05:30

23 lines
533 B
Ruby

# frozen_string_literal: true
module Keys
class CreateService < ::Keys::BaseService
attr_accessor :current_user
def initialize(current_user, params = {})
@current_user = current_user
@params = params
@ip_address = @params.delete(:ip_address)
@user = params.delete(:user) || current_user
end
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')