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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
311 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-09-15 15:35:24 +00:00
module Keys
class BaseService
attr_accessor :user, :params
def initialize(user, params = {})
@user = user
@params = params
2017-10-24 06:52:47 +00:00
@ip_address = @params.delete(:ip_address)
2017-09-15 15:35:24 +00:00
end
def notification_service
NotificationService.new
end
end
end