17 lines
460 B
Ruby
17 lines
460 B
Ruby
# Copyright (c) 2010-2011, Diaspora Inc. This file is
|
|
# licensed under the Affero General Public License version 3 or later. See
|
|
# the COPYRIGHT file.
|
|
|
|
|
|
require File.join(Rails.root, 'lib/postzord/receiver/private')
|
|
module Job
|
|
class ReceiveSalmon < Base
|
|
@queue = :receive_salmon
|
|
|
|
def self.perform(user_id, xml)
|
|
user = User.find(user_id)
|
|
zord = Postzord::Receiver.new(user, :salmon_xml => xml)
|
|
zord.perform
|
|
end
|
|
end
|
|
end
|