Welcome to mirror list, hosted at ThFree Co, Russian Federation.

receive_public.rb « workers « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3ec918d2d54b30f4b540f6f9d247efa51cd47512 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#   Copyright (c) 2010-2011, Diaspora Inc.  This file is
#   licensed under the Affero General Public License version 3 or later.  See
#   the COPYRIGHT file.

module Workers
  class ReceivePublic < ReceiveBase
    def perform(data, legacy=false)
      filter_errors_for_retry do
        DiasporaFederation::Federation::Receiver.receive_public(data, legacy)
      end
    end
  end
end