mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 23:54:00 +08:00
10 lines
216 B
Ruby
10 lines
216 B
Ruby
module Jobs
|
|
# checks to see if any users need to be promoted
|
|
class EnsureDbConsistency < Jobs::Base
|
|
def execute(args)
|
|
TopicUser.ensure_consistency!
|
|
UserVisit.ensure_consistency!
|
|
end
|
|
end
|
|
end
|