mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
34 lines
891 B
JavaScript
34 lines
891 B
JavaScript
/*
|
|
* 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
|
|
*/
|
|
let MockProjectHistoryApi;
|
|
const express = require("express");
|
|
const app = express();
|
|
|
|
module.exports = (MockProjectHistoryApi = {
|
|
flushProject(doc_id, callback) {
|
|
if (callback == null) { callback = function(error) {}; }
|
|
return callback();
|
|
},
|
|
|
|
run() {
|
|
app.post("/project/:project_id/flush", (req, res, next) => {
|
|
return this.flushProject(req.params.project_id, function(error) {
|
|
if (error != null) {
|
|
return res.sendStatus(500);
|
|
} else {
|
|
return res.sendStatus(204);
|
|
}
|
|
});
|
|
});
|
|
|
|
return app.listen(3054, function(error) {
|
|
if (error != null) { throw error; }
|
|
});
|
|
}
|
|
});
|
|
|
|
MockProjectHistoryApi.run();
|