diff options
Diffstat (limited to 'server.js')
-rw-r--r-- | server.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -53,7 +53,7 @@ app.use(bodyParser.json()) | |||
53 | app.use(bodyParser.urlencoded({ extended: false })) | 53 | app.use(bodyParser.urlencoded({ extended: false })) |
54 | // Validate some params for the API | 54 | // Validate some params for the API |
55 | app.use(expressValidator({ | 55 | app.use(expressValidator({ |
56 | customValidators: customValidators | 56 | customValidators: Object.assign({}, customValidators.misc, customValidators.users, customValidators.videos) |
57 | })) | 57 | })) |
58 | 58 | ||
59 | // ----------- Views, routes and static files ----------- | 59 | // ----------- Views, routes and static files ----------- |