10 lines
237 B
Ruby
10 lines
237 B
Ruby
# frozen_string_literal: true
|
|
|
|
# A job that runs hourly to delete all state rate limit objects from the
|
|
# database. Spawned by {DanbooruMaintenance}.
|
|
class PruneRateLimitsJob < ApplicationJob
|
|
def perform
|
|
RateLimit.prune!
|
|
end
|
|
end
|