mirror of
https://ghfast.top/https://github.com/discourse/discourse-akismet.git
synced 2026-07-15 11:36:24 +08:00
13 lines
279 B
Ruby
13 lines
279 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class CleanOldAkismetCustomFields < ::Jobs::Scheduled
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
return unless SiteSetting.akismet_enabled?
|
|
|
|
DiscourseAkismet::PostsBouncer.new.clean_old_akismet_custom_fields
|
|
end
|
|
end
|
|
end
|