10 lines
190 B
Ruby
10 lines
190 B
Ruby
# frozen_string_literal: true
|
|
|
|
# A job that runs daily to remove expired bans. Spawned by
|
|
# {DanbooruMaintenance}.
|
|
class PruneBansJob < ApplicationJob
|
|
def perform
|
|
Ban.prune!
|
|
end
|
|
end
|