From 88b5fa7fb7e7c4ac4573f48285078728e277529b Mon Sep 17 00:00:00 2001 From: Halite Demo Date: Sun, 16 Aug 2026 13:16:05 +0500 Subject: [PATCH] Touch AuthModule token rotation so Halite can flag JWT decision. --- src/auth/auth.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/auth.service.ts b/src/auth/auth.service.ts index aa8966c..2b5a48c 100644 --- a/src/auth/auth.service.ts +++ b/src/auth/auth.service.ts @@ -8,6 +8,6 @@ /** Ticket #42 — refresh token rotation (demo change for invalidation). */ rotateRefreshToken(oldToken: string): string { - return `rotated:${oldToken}`; + return `rotated:${oldToken}:${Date.now()}`; } }