mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
avoid error when passing as limit in mongo query
convert request parameter from string to number
This commit is contained in:
parent
404749acaf
commit
3ac0e97a14
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ module.exports =
|
|||
|
||||
deactivateOldProjects: (req, res)->
|
||||
logger.log "recived request to deactivate old projects"
|
||||
numberOfProjectsToArchive = req.body.numberOfProjectsToArchive
|
||||
numberOfProjectsToArchive = parseInt(req.body.numberOfProjectsToArchive, 10)
|
||||
ageOfProjects = req.body.ageOfProjects
|
||||
InactiveProjectManager.deactivateOldProjects numberOfProjectsToArchive, ageOfProjects, (err, projectsDeactivated)->
|
||||
if err?
|
||||
|
|
Loading…
Reference in a new issue