mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-16 05:04:03 +00:00
11 lines
278 B
Ruby
11 lines
278 B
Ruby
class EventCommentMailJob < ActiveJob::Base
|
|
queue_as :default
|
|
|
|
def perform(comment)
|
|
conference = comment.commentable.program.conference
|
|
|
|
User.comment_notifiable(conference).each do |user|
|
|
Mailbot.event_comment_mail(comment, user).deliver_now
|
|
end
|
|
end
|
|
end
|