2019-08-31 18:08:56 +02:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Workers.ActivityExpirationWorker do
|
2019-08-31 20:58:42 +02:00
|
|
|
use Pleroma.Workers.WorkerHelper, queue: "activity_expiration"
|
|
|
|
|
2019-08-31 18:08:56 +02:00
|
|
|
@impl Oban.Worker
|
|
|
|
def perform(
|
|
|
|
%{
|
|
|
|
"op" => "activity_expiration",
|
|
|
|
"activity_expiration_id" => activity_expiration_id
|
|
|
|
},
|
|
|
|
_job
|
|
|
|
) do
|
2019-09-02 13:57:40 +02:00
|
|
|
Pleroma.Daemons.ActivityExpirationDaemon.perform(:execute, activity_expiration_id)
|
2019-08-31 18:08:56 +02:00
|
|
|
end
|
|
|
|
end
|