mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 02:00:10 +02:00
12 lines
245 B
CoffeeScript
12 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)
|
|
|