14 lines
265 B
Ruby
14 lines
265 B
Ruby
class EmailDigest
|
|
|
|
def initialize
|
|
end
|
|
|
|
def create
|
|
User.email_digest.each do |user|
|
|
if user.notifications.where(notifiable_type: "ProposalNotification").any?
|
|
Mailer.proposal_notification_digest(user).deliver_later
|
|
end
|
|
end
|
|
end
|
|
|
|
end |