diff options
author | bobzel <zzzman@gmail.com> | 2025-06-04 22:07:36 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-06-04 22:07:36 -0400 |
commit | 59689fe94c27986674dd6ecb7f0e6073861a98a6 (patch) | |
tree | 42ef1d5a631676e0b0c63076f60a48064fac642d /src/server/authentication/DashUserModel.ts | |
parent | f7cb0dcebb0514cf38f8a7e635ec9959c196145a (diff) |
more cleanup of google authorization
Diffstat (limited to 'src/server/authentication/DashUserModel.ts')
-rw-r--r-- | src/server/authentication/DashUserModel.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/server/authentication/DashUserModel.ts b/src/server/authentication/DashUserModel.ts index 4397e2bd4..debeef60c 100644 --- a/src/server/authentication/DashUserModel.ts +++ b/src/server/authentication/DashUserModel.ts @@ -9,14 +9,9 @@ export type DashUserModel = mongoose.Document & { passwordResetToken?: string; passwordResetExpires?: Date; - - // AARAV ADD - googleToken?: string; - dropboxRefresh?: string; dropboxToken?: string; - userDocumentId: string; sharingDocumentId: string; linkDatabaseId: string; @@ -45,7 +40,6 @@ const userSchema = new mongoose.Schema( passwordResetToken: String, passwordResetExpires: Date, - googleToken: String, dropboxRefresh: String, dropboxToken: String, userDocumentId: String, // id that identifies a document which hosts all of a user's account data |