prototyping passport auth logic

This commit is contained in:
Mikayla Dobson
2022-11-21 10:57:37 -06:00
parent aaf71bc4f7
commit 1b08598799
10 changed files with 427 additions and 534 deletions

View File

@@ -37,4 +37,9 @@ export interface IGroceryList {
recipes?: IRecipe["id"][]
active: boolean
ownerid: IUser["id"]
}
export interface IUserAuth {
email: string
password: string
}