Increase size limit (arbitrarily... *shrug*)

This commit is contained in:
James Allen 2014-05-19 20:03:05 +01:00
parent 5cd66aad58
commit 9261987bd8

View file

@ -18,7 +18,7 @@ app = express()
app.use Metrics.http.monitor(logger)
app.post "/project/:project_id/compile", bodyParser.json(limit: "2mb"), CompileController.compile
app.post "/project/:project_id/compile", bodyParser.json(limit: "5mb"), CompileController.compile
app.delete "/project/:project_id", CompileController.clearCache
app.get "/project/:project_id/sync/code", CompileController.syncFromCode