(email: string)
| 743 | }, |
| 744 | |
| 745 | getUserByEmail(email: string): User | undefined { |
| 746 | const row = tenantStmts.getUserByEmail.get(email) as Record<string, unknown> | undefined; |
| 747 | return row ? rowToUser(row) : undefined; |
| 748 | }, |
| 749 | |
| 750 | getUsersByOrg(orgId: string): User[] { |
| 751 | const rows = tenantStmts.getUsersByOrg.all(orgId) as Record<string, unknown>[]; |
nothing calls this directly
no test coverage detected
searching dependent graphs…