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

14 lines
221 B
Ruby
Raw Normal View History

2017-09-15 15:35:24 +00:00
module Keys
class BaseService
attr_accessor :user, :params
def initialize(user, params)
@user, @params = user, params
end
def notification_service
NotificationService.new
end
end
end