mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:56:01 +08:00
427d54b2b0
Zeitwerk simplifies working with dependencies in dev and makes it easier reloading class chains. We no longer need to use Rails "require_dependency" anywhere and instead can just use standard Ruby patterns to require files. This is a far reaching change and we expect some followups here.
32 lines
830 B
Ruby
32 lines
830 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
|
|
class InvalidateInactiveAdmins < ::Jobs::Scheduled
|
|
every 1.day
|
|
|
|
def execute(_)
|
|
return if SiteSetting.invalidate_inactive_admin_email_after_days == 0
|
|
|
|
User.human_users
|
|
.where(admin: true)
|
|
.where(active: true)
|
|
.where('last_seen_at < ?', SiteSetting.invalidate_inactive_admin_email_after_days.days.ago)
|
|
.each do |user|
|
|
|
|
User.transaction do
|
|
user.deactivate(Discourse.system_user)
|
|
user.email_tokens.update_all(confirmed: false, expired: true)
|
|
|
|
Discourse.authenticators.each do |authenticator|
|
|
if authenticator.can_revoke? && authenticator.description_for_user(user).present?
|
|
authenticator.revoke(user)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|