mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 01:31:02 +08:00
10 lines
146 B
Ruby
10 lines
146 B
Ruby
module Jobs
|
|
class CleanUpExports < Jobs::Scheduled
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
UserExport.remove_old_exports
|
|
end
|
|
end
|
|
end
|