( uid: string, )
| 800 | } |
| 801 | |
| 802 | export async function getFavoriteQuotes( |
| 803 | uid: string, |
| 804 | ): Promise<NonNullable<DBUser["favoriteQuotes"]>> { |
| 805 | const user = await getPartialUser(uid, "get favorite quotes", [ |
| 806 | "favoriteQuotes", |
| 807 | ]); |
| 808 | |
| 809 | return user.favoriteQuotes ?? {}; |
| 810 | } |
| 811 | |
| 812 | export async function addFavoriteQuote( |
| 813 | uid: string, |
nothing calls this directly
no test coverage detected