mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
13 lines
161 B
Ruby
13 lines
161 B
Ruby
|
module Jobs
|
||
|
|
||
|
class CleanUpAssociatedAccounts < Jobs::Scheduled
|
||
|
every 1.day
|
||
|
|
||
|
def execute(args)
|
||
|
UserAssociatedAccount.cleanup!
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|