From 19f1f3c98942e4a3c4b10e73ab9a64047e3a1aa2 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 2 Oct 2024 22:33:46 +0530 Subject: [PATCH] feat: include proxy url, username & password in UserAttributes --- server/src/models/User.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/src/models/User.ts b/server/src/models/User.ts index 40eb2198..a0fd34e6 100644 --- a/server/src/models/User.ts +++ b/server/src/models/User.ts @@ -6,6 +6,9 @@ interface UserAttributes { email: string; password: string; api_key?: string | null; + proxy_url?: string | null; + proxy_username?: string | null; + proxy_password?: string | null; } // Optional fields for creating a new user