mirror of
https://github.com/discourse/discourse.git
synced 2025-02-12 15:47:47 +08:00
10 lines
265 B
Ruby
10 lines
265 B
Ruby
![]() |
# frozen_string_literal: true
|
||
|
|
||
|
class Jobs::BackfillSidebarSiteSettings < Jobs::Base
|
||
|
def execute(args)
|
||
|
SidebarSiteSettingsBackfiller
|
||
|
.new(args[:setting_name], previous_value: args[:previous_value], new_value: args[:new_value])
|
||
|
.backfill!
|
||
|
end
|
||
|
end
|