mirror of
https://github.com/discourse/discourse.git
synced 2024-12-15 14:03:42 +08:00
12 lines
180 B
Ruby
12 lines
180 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Jobs
|
||
|
class UpdateHeatSettings < Jobs::Scheduled
|
||
|
every 1.month
|
||
|
|
||
|
def execute(args)
|
||
|
HeatSettingsUpdater.update
|
||
|
end
|
||
|
end
|
||
|
end
|