MCPcopy Create free account
hub / github.com/monkeytypegame/monkeytype / deleteUser

Function deleteUser

backend/src/dal/user.ts:113–115  ·  view source on GitHub ↗
(uid: string)

Source from the content-addressed store, hash-verified

111}
112
113export async function deleteUser(uid: string): Promise<void> {
114 await getUsersCollection().deleteOne({ uid });
115}
116
117export async function resetUser(uid: string): Promise<void> {
118 await getUsersCollection().updateOne(

Callers

nothing calls this directly

Calls 1

getUsersCollectionFunction · 0.85

Tested by

no test coverage detected