refactor(core): Load cookieParser middleware only once (no-changelog) (#6614)

[Server.ts already explicitly loads `cookieParser`](https://github.com/n8n-io/n8n/blob/master/packages/cli/src/Server.ts#L571)
This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-07-07 09:57:03 +02:00
committed by GitHub
parent 7383e7fd48
commit a76223307f
2 changed files with 2 additions and 3 deletions

View File

@@ -1,6 +1,5 @@
import type { Application, NextFunction, Request, RequestHandler, Response } from 'express';
import jwt from 'jsonwebtoken';
import cookieParser from 'cookie-parser';
import passport from 'passport';
import { Strategy } from 'passport-jwt';
import { sync as globSync } from 'fast-glob';
@@ -78,8 +77,6 @@ export const setupAuthMiddlewares = (
ignoredEndpoints: Readonly<string[]>,
restEndpoint: string,
) => {
// needed for testing; not adding overhead since it directly returns if req.cookies exists
app.use(cookieParser());
app.use(userManagementJwtAuth());
app.use(async (req: Request, res: Response, next: NextFunction) => {