(uid: string)
| 111 | } |
| 112 | |
| 113 | export async function deleteUser(uid: string): Promise<void> { |
| 114 | await getUsersCollection().deleteOne({ uid }); |
| 115 | } |
| 116 | |
| 117 | export async function resetUser(uid: string): Promise<void> { |
| 118 | await getUsersCollection().updateOne( |
nothing calls this directly
no test coverage detected