summaryrefslogtreecommitdiff
path: root/lib/pleroma/workers/cron/stats_worker.ex
blob: e9b8d59c446379ea27de31fcaf2e81209a6671dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Workers.Cron.StatsWorker do
  @moduledoc """
  The worker to update peers statistics.
  """

  use Oban.Worker, queue: "background"

  @impl Oban.Worker
  def perform(_opts, _job) do
    Pleroma.Stats.do_collect()
  end
end