1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-12-25 04:53:06 +00:00
akkoma/lib/pleroma/workers/web_pusher_worker.ex

21 lines
594 B
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2020-03-03 22:44:49 +00:00
# Copyright © 2017-2020 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
2020-06-23 13:09:01 +01:00
def perform(%Job{args: %{"op" => "web_push", "notification_id" => notification_id}}) do
2019-09-17 19:12:27 +01:00
notification =
Notification
|> Repo.get(notification_id)
|> Repo.preload([:activity, :user])
2019-09-17 19:12:27 +01:00
Pleroma.Web.Push.Impl.perform(notification)
end
end