(userId: string)
| 31 | const jtiKey = (jti: string): string => `${JTI_KEY_PREFIX}${jti}`; |
| 32 | |
| 33 | const userRevokeKey = (userId: string): string => |
| 34 | `${USER_KEY_PREFIX}${userId}${USER_KEY_SUFFIX}`; |
| 35 | |
| 36 | /** |
| 37 | * Blocks a specific JWT by ID until it naturally expires. Idempotent: |
no outgoing calls
no test coverage detected