mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 09:23:44 +08:00
9 lines
180 B
Ruby
9 lines
180 B
Ruby
|
module Jobs
|
||
|
# checks to see if any users need to be promoted
|
||
|
class EnsureDbConsistency < Jobs::Base
|
||
|
def execute(args)
|
||
|
TopicUser.ensure_consistency!
|
||
|
end
|
||
|
end
|
||
|
end
|