mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 22:11:09 +00:00
changed post to deactivate projects to set params via body rather than query params
This commit is contained in:
parent
50fc886c94
commit
a777fcc5a6
1 changed files with 2 additions and 2 deletions
|
@ -6,8 +6,8 @@ module.exports =
|
|||
|
||||
deactivateOldProjects: (req, res)->
|
||||
logger.log "recived request to deactivate old projects"
|
||||
numberOfProjectsToArchive = req.query.limit
|
||||
ageOfProjects = req.query.daysOld
|
||||
numberOfProjectsToArchive = req.body.numberOfProjectsToArchive
|
||||
ageOfProjects = req.body.ageOfProjects
|
||||
InactiveProjectManager.deactivateOldProjects numberOfProjectsToArchive, ageOfProjects, (err, projectsDeactivated)->
|
||||
if err?
|
||||
res.sendStatus(500)
|
||||
|
|
Loading…
Reference in a new issue