mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
20 lines
651 B
Ruby
20 lines
651 B
Ruby
# frozen_string_literal: true
|
|
|
|
# send notification to one or several receiver with a type, an attached object and an optional meta data
|
|
class NotificationCenter
|
|
def self.call(type: nil, receiver: nil, attached_object: nil, meta_data: {})
|
|
receiver = [receiver] unless receiver.respond_to?(:each)
|
|
notification_type = NotificationType.find_by(name: type)
|
|
|
|
receiver.each do |user|
|
|
Notification.new(
|
|
meta_data: meta_data,
|
|
attached_object: attached_object,
|
|
receiver: user,
|
|
notification_type: notification_type
|
|
)
|
|
.deliver_with_preferences(user, notification_type)
|
|
end
|
|
end
|
|
end
|