decent place with fixing api and such

This commit is contained in:
talksik
2022-03-17 23:12:19 -04:00
parent 013d2fcb16
commit 4d0a75af6e
4 changed files with 19 additions and 14 deletions
+2 -2
View File
@@ -2,14 +2,14 @@ import { ObjectId } from "mongodb";
export class User {
constructor(
public _id: ObjectId,
public email: string,
public verifiedEmail: boolean,
public name: string,
public given_name: string,
public family_name: string,
public picture: string,
public locale: string
public locale: string,
public _id?: ObjectId
) // additional properties specific to our users collection
{}
}