Files
danbooru/app/jobs/prune_approvers_job.rb
evazion a7dc05ce63 Enable frozen string literals.
Make all string literals immutable by default.
2021-12-14 21:33:27 -06:00

10 lines
218 B
Ruby

# frozen_string_literal: true
# A job that runs monthly to demote all inactive approvers. Spawned by
# {DanbooruMaintenance}.
class PruneApproversJob < ApplicationJob
def perform
ApproverPruner.prune!
end
end