Pārlūkot izejas kodu

fix: use body parser limit config with fallback value (#4985)

* permit bodyParserLimitSize configuration

set bodyParserLimitSize by default to 1mb
permit modifications by environment variable

* fix: use bodyparserlimit config with fallback default

Co-authored-by: Nicolas Giard <github@ngpixel.com>
matthgyver 3 gadi atpakaļ
vecāks
revīzija
7988fa62ca
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      server/master.js

+ 1 - 1
server/master.js

@@ -91,7 +91,7 @@ module.exports = async () => {
   // GraphQL Server
   // ----------------------------------------
 
-  app.use(bodyParser.json({ limit: WIKI.config.bodyParserLimit }))
+  app.use(bodyParser.json({ limit: WIKI.config.bodyParserLimit || '1mb' }))
   await WIKI.servers.startGraphQL()
 
   // ----------------------------------------