Merge branch 'feature/delivery-tracking' into 'develop'
[akkoma] / lib / pleroma / workers / web_pusher_worker.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Workers.WebPusherWorker do
6 alias Pleroma.Notification
7 alias Pleroma.Repo
8
9 use Pleroma.Workers.WorkerHelper, queue: "web_push"
10
11 @impl Oban.Worker
12 def perform(%{"op" => "web_push", "notification_id" => notification_id}, _job) do
13 notification = Repo.get(Notification, notification_id)
14 Pleroma.Web.Push.Impl.perform(notification)
15 end
16 end