Browse Source

avoid error when passing as limit in mongo query

convert request parameter from string to number
Brian Gough 9 years ago
parent
commit
3ac0e97a14

+ 1 - 1
services/web/app/coffee/Features/InactiveData/InactiveProjectController.coffee

@@ -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?