fix: make webhook secret/url allowing null (#590)

This commit is contained in:
2025-08-29 11:55:18 -06:00
committed by GitHub
parent 5f2f0e9317
commit 84a381220b
3 changed files with 34 additions and 6 deletions

View File

@@ -46,8 +46,8 @@ class Room(BaseModel):
class RoomDetails(Room):
webhook_url: str
webhook_secret: str
webhook_url: str | None
webhook_secret: str | None
class Meeting(BaseModel):