This commit is contained in:
root
2026-06-07 23:18:53 +08:00
parent ebd3d6a317
commit 934b9a4a23
36 changed files with 2272 additions and 296 deletions

View File

@@ -46,6 +46,15 @@ ENHANCED_MEETUPS: list[dict[str, Any]] = [
],
"isUpcoming": idx % 5 != 0,
"status": "published",
"mode": "online" if idx % 6 == 0 else "hybrid" if idx % 4 == 0 else "offline",
"maxAttendees": 80 if idx % 6 == 0 else 36 if idx % 4 == 0 else 24,
"organizer": f"{city['name']}城市主理人",
"accessLevel": "vip" if idx % 6 == 0 else "members" if idx % 4 == 0 else "public",
"meetingProvider": "mirotalk" if idx % 4 == 0 or idx % 6 == 0 else "",
"mirotalkRoom": f"nomadcna-{city['slug']}-remote-roundtable" if idx % 4 == 0 or idx % 6 == 0 else "",
"meetingUrl": "",
"replayUrl": "",
"features": ["group_video", "screen_share", "whiteboard", "host_controls"] if idx % 4 == 0 or idx % 6 == 0 else [],
}
for idx, city in enumerate(CITIES, start=1)
]