readme
This commit is contained in:
@@ -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)
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user