diaspora/app/models/job/mail/also_commented.rb

11 lines
243 B
Ruby

module Job
module Mail
class AlsoCommented < Base
@queue = :mail
def self.perform(recipient_id, sender_id, comment_id)
Notifier.also_commented(recipient_id, sender_id, comment_id).deliver
end
end
end
end