( req: MonkeyRequest, )
| 25 | } |
| 26 | |
| 27 | export async function deleteConfig( |
| 28 | req: MonkeyRequest, |
| 29 | ): Promise<MonkeyResponse> { |
| 30 | const { uid } = req.ctx.decodedToken; |
| 31 | |
| 32 | await ConfigDAL.deleteConfig(uid); |
| 33 | return new MonkeyResponse("Config deleted", null); |
| 34 | } |
no outgoing calls
no test coverage detected