From 09a55fdff8dab12b8b84d310f3e8abecacc5434d Mon Sep 17 00:00:00 2001 From: N08I40K Date: Mon, 23 Dec 2024 18:55:05 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BC=D0=B5=D0=BD=D0=B0=20=D0=B2=D1=80?= =?UTF-8?q?=D0=B5=D0=BC=D0=B5=D0=BD=D0=B8=20=D0=B4=D0=B5=D0=B9=D1=81=D1=82?= =?UTF-8?q?=D0=B2=D0=B8=D1=8F=20jwt=20=D1=82=D0=BE=D0=BA=D0=B5=D0=BD=D0=BE?= =?UTF-8?q?=D0=B2.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/auth/auth.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/auth.module.ts b/src/auth/auth.module.ts index aaaab5b..3f4bbe1 100644 --- a/src/auth/auth.module.ts +++ b/src/auth/auth.module.ts @@ -15,7 +15,7 @@ import { V2AuthController } from "./v2-auth.controller"; JwtModule.register({ global: true, secret: jwtConstants.secret, - signOptions: { expiresIn: "720h" }, + signOptions: { expiresIn: "4y" }, }), ], providers: [AuthService, PrismaService],