From f756f8e6c1d97ef5df1a572273e832b6d83c3835 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 16 Oct 2024 20:00:54 +0530 Subject: [PATCH] feat: google sheets email, access token & refresh token --- server/src/models/User.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/server/src/models/User.ts b/server/src/models/User.ts index 5a3d552c..e0870015 100644 --- a/server/src/models/User.ts +++ b/server/src/models/User.ts @@ -10,6 +10,9 @@ interface UserAttributes { proxy_url?: string | null; proxy_username?: string | null; proxy_password?: string | null; + google_sheets_email?: string | null; + google_access_token?: string | null; + google_refresh_token?: string | null; } interface UserCreationAttributes extends Optional { } @@ -23,6 +26,9 @@ class User extends Model implements User public proxy_url!: string | null; public proxy_username!: string | null; public proxy_password!: string | null; + public google_sheets_email!: string | null; + public google_access_token!: string | null; + public google_refresh_token!: string | null; } User.init( @@ -72,6 +78,18 @@ User.init( type: DataTypes.STRING, allowNull: true, }, + google_sheets_email: { + type: DataTypes.STRING, + allowNull: true, + }, + google_access_token: { + type: DataTypes.STRING, + allowNull: true, + }, + google_refresh_token: { + type: DataTypes.STRING, + allowNull: true, + }, }, { sequelize,