15 lines
363 B
Ruby
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
|