diaspora/app/models/jobs/mail_mentioned.rb
2011-02-10 12:39:05 -08:00

15 lines
375 B
Ruby

# Copyright (c) 2010, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file.
module Job
class MailMentioned < Base
@queue = :mail
def self.perform_delegate(recipient_id, actor_id, target_id)
Notifier.mentioned( recipient_id, actor_id, target_id).deliver
end
end
end