2020-05-06 06:12:36 -04:00
|
|
|
/* eslint-disable
|
|
|
|
camelcase,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2020-05-06 06:12:17 -04:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
2020-05-06 06:12:47 -04:00
|
|
|
let MockProjectHistoryApi
|
|
|
|
const express = require('express')
|
|
|
|
const app = express()
|
2017-10-05 10:14:35 -04:00
|
|
|
|
2020-05-06 06:12:47 -04:00
|
|
|
module.exports = MockProjectHistoryApi = {
|
|
|
|
flushProject(doc_id, callback) {
|
|
|
|
if (callback == null) {
|
2021-10-27 05:49:18 -04:00
|
|
|
callback = function () {}
|
2020-05-06 06:12:47 -04:00
|
|
|
}
|
|
|
|
return callback()
|
|
|
|
},
|
2017-10-05 10:14:35 -04:00
|
|
|
|
2020-05-06 06:12:47 -04:00
|
|
|
run() {
|
|
|
|
app.post('/project/:project_id/flush', (req, res, next) => {
|
2021-07-13 07:04:42 -04:00
|
|
|
return this.flushProject(req.params.project_id, error => {
|
2020-05-06 06:12:47 -04:00
|
|
|
if (error != null) {
|
|
|
|
return res.sendStatus(500)
|
|
|
|
} else {
|
|
|
|
return res.sendStatus(204)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
2017-10-05 10:14:35 -04:00
|
|
|
|
2021-07-13 07:04:42 -04:00
|
|
|
return app.listen(3054, error => {
|
2020-05-06 06:12:47 -04:00
|
|
|
if (error != null) {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
})
|
2021-07-13 07:04:42 -04:00
|
|
|
},
|
2020-05-06 06:12:47 -04:00
|
|
|
}
|
2017-10-05 10:14:35 -04:00
|
|
|
|
2020-05-06 06:12:47 -04:00
|
|
|
MockProjectHistoryApi.run()
|