From f753f8dec2bab172d7f044d9e3291dfb3d5e3222 Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Fri, 28 Jun 2024 16:22:07 +0700 Subject: [PATCH] refactor: add field to type --- src/interfaces/user.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/interfaces/user.ts b/src/interfaces/user.ts index 12c5d59..a35cdc4 100644 --- a/src/interfaces/user.ts +++ b/src/interfaces/user.ts @@ -2,6 +2,7 @@ import type { Request } from "express"; export type RequestWithUser = Request & { user: { + sub: string; name: string; given_name: string; familiy_name: string;