Page MenuHomePhorge

web_pusher_worker.ex
No OneTemporary

Size
658 B
Referenced Files
None
Subscribers
None

web_pusher_worker.ex

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

File Metadata

Mime Type
text/x-ruby
Expires
Tue, Jan 20, 2:04 PM (45 m, 26 s)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
973846
Default Alt Text
web_pusher_worker.ex (658 B)

Event Timeline