Enable full mode with multiple rooms

This commit is contained in:
dtonon 2026-05-19 13:15:36 +01:00
parent a8b7eaf20e
commit f6bea700f0
24 changed files with 767 additions and 286 deletions

View file

@ -1,6 +1,7 @@
import {
PUBLIC_RELAY_URL,
PUBLIC_GROUP_ID,
PUBLIC_TITLE,
PUBLIC_MODE,
PUBLIC_JOINCODE,
PUBLIC_LABELS,
@ -9,6 +10,7 @@ import {
export const RELAY_URL = PUBLIC_RELAY_URL;
export const GROUP_ID = PUBLIC_GROUP_ID;
export const TITLE = PUBLIC_TITLE ?? "";
export const MODE: "simple" | "full" =
PUBLIC_MODE === "full" ? "full" : "simple";
export const JOINCODE_REQUIRED = PUBLIC_JOINCODE === "yes";