diaspora/app/models/jobs/receive_salmon.rb
2011-01-05 18:52:43 -08:00

15 lines
363 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 Jobs
class ReceiveSalmon
extend ResqueJobLogging
@queue = :receive_salmon
def self.perform(user_id, xml)
user = User.find(user_id)
user.receive_salmon(xml)
end
end
end