(captcha: string)
| 25 | import { Language } from "@monkeytype/schemas/languages"; |
| 26 | |
| 27 | async function verifyCaptcha(captcha: string): Promise<void> { |
| 28 | if (!(await verify(captcha))) { |
| 29 | throw new MonkeyError(422, "Captcha check failed"); |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | export async function getQuotes( |
| 34 | req: MonkeyRequest, |
no test coverage detected