mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
0ca81de78c
Decaffeinate backend GitOrigin-RevId: 4ca9f94fc809cab6f47cec8254cacaf1bb3806fa
48 lines
1.4 KiB
JavaScript
48 lines
1.4 KiB
JavaScript
/* eslint-disable
|
|
camelcase,
|
|
max-len,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* DS207: Consider shorter variations of null checks
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
const InactiveProjectManager = require('./InactiveProjectManager')
|
|
const logger = require('logger-sharelatex')
|
|
|
|
module.exports = {
|
|
deactivateOldProjects(req, res) {
|
|
logger.log('recived request to deactivate old projects')
|
|
const numberOfProjectsToArchive = parseInt(
|
|
req.body.numberOfProjectsToArchive,
|
|
10
|
|
)
|
|
const { ageOfProjects } = req.body
|
|
return InactiveProjectManager.deactivateOldProjects(
|
|
numberOfProjectsToArchive,
|
|
ageOfProjects,
|
|
function(err, projectsDeactivated) {
|
|
if (err != null) {
|
|
return res.sendStatus(500)
|
|
} else {
|
|
return res.send(projectsDeactivated)
|
|
}
|
|
}
|
|
)
|
|
},
|
|
|
|
deactivateProject(req, res) {
|
|
const { project_id } = req.params
|
|
logger.log({ project_id }, 'recived request to deactivating project')
|
|
return InactiveProjectManager.deactivateProject(project_id, function(err) {
|
|
if (err != null) {
|
|
return res.sendStatus(500)
|
|
} else {
|
|
return res.sendStatus(200)
|
|
}
|
|
})
|
|
}
|
|
}
|