(experimentId: (typeof EXPERIMENT_IDS)[keyof typeof EXPERIMENT_IDS])
| 2092 | } |
| 2093 | |
| 2094 | isExperimentEnabled(experimentId: (typeof EXPERIMENT_IDS)[keyof typeof EXPERIMENT_IDS]): boolean { |
| 2095 | return this.experimentsService?.isExperimentEnabled(experimentId) === true; |
| 2096 | } |
| 2097 | |
| 2098 | private async stopLiveWorkspaceActivityForArchive(workspaceId: string): Promise<void> { |
| 2099 | // Archiving removes the workspace from the sidebar; ensure we don't leave a stream running |
no test coverage detected