(user: User | null)
| 155 | * @param user User context object to be set in the current context. Pass `null` to unset the user. |
| 156 | */ |
| 157 | export function setUser(user: User | null): void { |
| 158 | getIsolationScope().setUser(user); |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Sets the conversation ID for the current isolation scope. |
no test coverage detected