mirror of
https://git.rape.pet/ulith/amputoma.git
synced 2025-02-25 06:03:59 +01:00
21 lines
485 B
Elixir
21 lines
485 B
Elixir
![]() |
# 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
|