mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-04 06:39:02 +02:00
Merge pull request #12219 from overleaf/em-camel-case-web
Camel case variables in web GitOrigin-RevId: 28e61b759b27f71265f33ab64f588374dba610e0
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
/* eslint-disable
|
||||
camelcase,
|
||||
max-len,
|
||||
*/
|
||||
// TODO: This file was created by bulk-decaffeinate.
|
||||
@@ -33,8 +32,8 @@ module.exports = {
|
||||
},
|
||||
|
||||
deactivateProject(req, res) {
|
||||
const { project_id } = req.params
|
||||
return InactiveProjectManager.deactivateProject(project_id, function (err) {
|
||||
const { project_id: projectId } = req.params
|
||||
return InactiveProjectManager.deactivateProject(projectId, function (err) {
|
||||
if (err != null) {
|
||||
return res.sendStatus(500)
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user