Merge branch 'dev' into feature/43-postal_from_env
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
Nicolai Ort 2020-12-22 12:41:15 +01:00
commit 84a7f30a60

View File

@ -6,6 +6,8 @@ import { Application } from "express";
*/
export default async (app: Application) => {
app.enable('trust proxy');
app.disable('x-powered-by');
app.disable('x-served-by');
app.use(cookieParser());
return app;
};