(sessionId: SessionId, slug: string)
| 52 | * Set a specific plan slug for a session (used when resuming a session) |
| 53 | */ |
| 54 | export function setPlanSlug(sessionId: SessionId, slug: string): void { |
| 55 | getPlanSlugCache().set(sessionId, slug) |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Clear the plan slug for the current session. |
no test coverage detected