mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 02:51:57 +02:00
Merge pull request #1717 from overleaf/as-decaffeinate-backend
Decaffeinate backend GitOrigin-RevId: 4ca9f94fc809cab6f47cec8254cacaf1bb3806fa
This commit is contained in:
committed by
sharelatex
parent
d4eb71b525
commit
0ca81de78c
@@ -0,0 +1,48 @@
|
||||
/* 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)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user