diaspora/app/models/jobs/post_to_services.rb

17 lines
439 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 PostToServices < Base
@queue = :http_service
def self.perform_delegate(user_id, post_id, url)
user = User.find_by_id(user_id)
post = Post.find_by_id(post_id)
user.services.each do |s|
s.post(post, url)
end
end
end
end