[#1505] Background fetching of incoming activities' replies collections.
This commit is contained in:
parent
cf96c40057
commit
86e4d23acb
5 changed files with 87 additions and 1 deletions
20
lib/pleroma/workers/remote_fetcher_worker.ex
Normal file
20
lib/pleroma/workers/remote_fetcher_worker.ex
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# Pleroma: A lightweight social networking server
|
||||
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
||||
# SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
defmodule Pleroma.Workers.RemoteFetcherWorker do
|
||||
alias Pleroma.Object.Fetcher
|
||||
|
||||
use Pleroma.Workers.WorkerHelper, queue: "remote_fetcher"
|
||||
|
||||
@impl Oban.Worker
|
||||
def perform(
|
||||
%{
|
||||
"op" => "fetch_remote",
|
||||
"id" => id
|
||||
},
|
||||
_job
|
||||
) do
|
||||
Fetcher.fetch_object_from_id!(id)
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue