mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 19:38:24 +00: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
|