feat: add team collaboration sessions for admins, enhancing session management and visibility in the application

This commit is contained in:
Julien Froidefond
2026-02-17 14:03:31 +01:00
parent 7f3eabbdb2
commit 4e14112ffa
9 changed files with 344 additions and 26 deletions

View File

@@ -13,12 +13,13 @@ export const WORKSHOP_TYPE_IDS = [
export type WorkshopTypeId = (typeof WORKSHOP_TYPE_IDS)[number];
export type WorkshopTabType = WorkshopTypeId | 'all' | 'byPerson';
export type WorkshopTabType = WorkshopTypeId | 'all' | 'byPerson' | 'team';
export const VALID_TAB_PARAMS: WorkshopTabType[] = [
'all',
...WORKSHOP_TYPE_IDS,
'byPerson',
'team',
];
export interface WorkshopConfig {