mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 23:03:38 +08:00
9be70a22cd
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
17 lines
658 B
Ruby
17 lines
658 B
Ruby
module Jobs
|
|
class DisableBootstrapMode < Jobs::Scheduled
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
return unless SiteSetting.bootstrap_mode_enabled
|
|
total_users = User.human_users.count
|
|
|
|
if SiteSetting.bootstrap_mode_min_users == 0 || total_users > SiteSetting.bootstrap_mode_min_users
|
|
SiteSetting.set_and_log('default_trust_level', TrustLevel[0]) if SiteSetting.get('default_trust_level') == TrustLevel[1]
|
|
SiteSetting.set_and_log('default_email_digest_frequency', 10080) if SiteSetting.get('default_email_digest_frequency') == 1440
|
|
SiteSetting.set_and_log('bootstrap_mode_enabled', false)
|
|
end
|
|
end
|
|
end
|
|
end
|