(rowId: string)
| 215 | } |
| 216 | |
| 217 | export async function clearVerifier(rowId: string): Promise<void> { |
| 218 | await db |
| 219 | .update(mcpServerOauth) |
| 220 | .set({ codeVerifier: null, updatedAt: new Date() }) |
| 221 | .where(eq(mcpServerOauth.id, rowId)) |
| 222 | } |
| 223 | |
| 224 | export async function clearState(rowId: string): Promise<void> { |
| 225 | await db |
no test coverage detected