mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 04:18:23 +00:00
This removes all uses of both `send` and `public_send` from consumers of SiteSetting and instead introduces a `get` helper for dynamic lookup This leads to much cleaner and safer code long term as we are always explicit to test that a site setting is really there before sending an arbitrary string to the class It also removes a couple of risky stubs from the auth provider test
15 lines
429 B
Ruby
15 lines
429 B
Ruby
module Jobs
|
|
class CleanUpDeprecatedUrlSiteSettings < Jobs::Scheduled
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
Jobs::MigrateUrlSiteSettings::SETTINGS.each do |old_setting, new_setting|
|
|
if SiteSetting.where("name = ? AND value IS NOT NULL", new_setting).exists?
|
|
SiteSetting.set(old_setting, nil, warn: false)
|
|
SiteSetting.find_by(name: old_setting).destroy!
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|