From 6dd91d164c415e9a32662e067378b22ec3c7dbb8 Mon Sep 17 00:00:00 2001 From: srg <48598846+dreadwood@users.noreply.github.com> Date: Thu, 21 Jul 2022 13:56:05 +0400 Subject: [PATCH] remove unused import --- 07-authentication/08-auth/02-jwt/routes/user-router.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07-authentication/08-auth/02-jwt/routes/user-router.js b/07-authentication/08-auth/02-jwt/routes/user-router.js index 6204c92..7252196 100644 --- a/07-authentication/08-auth/02-jwt/routes/user-router.js +++ b/07-authentication/08-auth/02-jwt/routes/user-router.js @@ -8,7 +8,7 @@ const refreshTokenService = require(`../services/refresh-token-service`); const authenticate = require(`../middlewares/authenticate`); const authenticateJwt = require(`../middlewares/authenticate-jwt`); const {makeTokens} = require(`../jwt-helper`); -const {JWT_ACCESS_SECRET, JWT_REFRESH_SECRET} = require(`../constants`); +const {JWT_REFRESH_SECRET} = require(`../constants`); const userRouter = new Router();