(uid: string)
| 187 | } |
| 188 | |
| 189 | export async function flagForNameChange(uid: string): Promise<void> { |
| 190 | await getUsersCollection().updateOne( |
| 191 | { uid }, |
| 192 | { $set: { needsToChangeName: true } }, |
| 193 | ); |
| 194 | } |
| 195 | |
| 196 | export async function clearPb(uid: string): Promise<void> { |
| 197 | await getUsersCollection().updateOne( |
nothing calls this directly
no test coverage detected