()
| 34 | } |
| 35 | |
| 36 | export async function PATCH() { |
| 37 | if (!isConfigured()) { |
| 38 | return NextResponse.json( |
| 39 | { error: "Google Tasks not configured" }, |
| 40 | { status: 400 } |
| 41 | ); |
| 42 | } |
| 43 | |
| 44 | return NextResponse.json( |
| 45 | { error: "Google Tasks update not implemented" }, |
| 46 | { status: 501 } |
| 47 | ); |
| 48 | } |
nothing calls this directly
no test coverage detected