fix linting

This commit is contained in:
Matteo Pagliazzi
2015-11-15 22:44:17 +01:00
parent 448ed70ab9
commit 3fe6f87a96
3 changed files with 5 additions and 5 deletions

View File

@@ -12,10 +12,10 @@ export default function attachMiddlewares (app) {
extended: true, // Uses 'qs' library as old connect middleware
}));
app.use(bodyParser.json());
app.use(analytics);
app.use(routes);
// Error handler middleware, define as the last one
app.use(errorHandler);
}