mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
11 lines
245 B
CoffeeScript
11 lines
245 B
CoffeeScript
InactiveProjectManager = require("./InactiveProjectManager")
|
|
|
|
module.exports =
|
|
|
|
deactivateOldProjects: (req, res)->
|
|
InactiveProjectManager.deactivateOldProjects 10, (err)->
|
|
if err?
|
|
res.sendStatus(500)
|
|
else
|
|
res.sendStatus(200)
|
|
|