(userId: string)
| 831 | }, |
| 832 | |
| 833 | listSessionsForUser(userId: string): Session[] { |
| 834 | const rows = tenantStmts.listSessionsForUser.all(userId) as Record<string, unknown>[]; |
| 835 | return rows.map(rowToSession); |
| 836 | }, |
| 837 | |
| 838 | getSessionForUser(userId: string, sessionId: string): Session | undefined { |
| 839 | const row = tenantStmts.getSessionForUser.get(sessionId, userId) as Record<string, unknown> | undefined; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…