mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
25 lines
482 B
CoffeeScript
25 lines
482 B
CoffeeScript
|
express = require("express")
|
||
|
app = express()
|
||
|
|
||
|
module.exports = MockDocUpdaterApi =
|
||
|
docs: {}
|
||
|
|
||
|
getAllDoc: (project_id, callback = (error) ->) ->
|
||
|
callback null, @docs
|
||
|
|
||
|
run: () ->
|
||
|
app.get "/project/:project_id/doc", (req, res, next) =>
|
||
|
@getAllDoc req.params.project_id, (error, docs) ->
|
||
|
if error?
|
||
|
res.send 500
|
||
|
if !docs?
|
||
|
res.send 404
|
||
|
else
|
||
|
res.send JSON.stringify docs
|
||
|
|
||
|
app.listen 3016, (error) ->
|
||
|
throw error if error?
|
||
|
|
||
|
MockDocUpdaterApi.run()
|
||
|
|