( userId: string, url: string, projectId?: string )
| 160 | |
| 161 | // User-scoped sessions |
| 162 | export function createSessionForUser( |
| 163 | userId: string, |
| 164 | url: string, |
| 165 | projectId?: string |
| 166 | ): Session { |
| 167 | return getTenantStore().createSessionForUser(userId, url, projectId); |
| 168 | } |
| 169 | |
| 170 | export function listSessionsForUser(userId: string): Session[] { |
| 171 | return getTenantStore().listSessionsForUser(userId); |
nothing calls this directly
no test coverage detected
searching dependent graphs…