mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 04:18:23 +00: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
|