1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Workers.WebPusherWorker do
6 alias Pleroma.Notification
9 use Pleroma.Workers.WorkerHelper, queue: "web_push"
12 def perform(%Job{args: %{"op" => "web_push", "notification_id" => notification_id}}) do
15 |> Repo.get(notification_id)
16 |> Repo.preload([:activity, :user])
18 Pleroma.Web.Push.Impl.perform(notification)
22 def timeout(_job), do: :timer.seconds(5)