We don't use perform_delegate anymore

This commit is contained in:
Raphael Sofaer 2011-07-19 10:55:23 -07:00
parent 9797e04957
commit b01ffb4489

View file

@ -1,8 +1,8 @@
module Job module Job
class MailConfirmEmail < Base class MailConfirmEmail < Base
@queue = :mail @queue = :mail
def self.perform_delegate(user_id) def self.perform(user_id)
Notifier.confirm_email(user_id).deliver Notifier.confirm_email(user_id).deliver
end end
end end
end end