We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7850c5 commit 918affbCopy full SHA for 918affb
1 file changed
src/service/service-host.js
@@ -5,7 +5,6 @@ const http = require('http')
5
const https = require('https')
6
const morgan = require('morgan')
7
const express = require('express')
8
-const multer = require('multer')
9
const bodyParser = require('body-parser')
10
const expressListRoutes = require('express-list-routes')
11
const debug = require('debug')('dataparty.service.host')
@@ -41,7 +40,6 @@ class ServiceHost {
41
40
42
if(debug.enabled){ this.apiApp.use(morgan('combined')) }
43
44
- this.apiApp.use(multer().array())
45
this.apiApp.use(bodyParser.urlencoded({ extended: true }))
46
this.apiApp.use(bodyParser.json())
47
this.apiApp.use(bodyParser.raw())
0 commit comments