You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're going to have a "room" entity in our app. This is a place with unique identifier, which can be joined to use video-chat capabilities.
We need REST operations to create/join rooms: POST /room/create
receives: nothing (?)
responds: unique room identifier
POST /room/join
receives: nothing (?)
responds: (?)
Should we think about unused rooms cleanup? What overhead does an existing room have?
The text was updated successfully, but these errors were encountered:
class Room(BaseModel):
id: str = random_short_id()
users: List[str] = [] # todo: make set()?
creator: str
worker_id: str
Do we want user names to be unique in one room? Now it is not unique, maybe it could be problem for workers to identify user when establishing connection
We're going to have a "room" entity in our app. This is a place with unique identifier, which can be joined to use video-chat capabilities.
We need REST operations to create/join rooms:
POST /room/create
POST /room/join
Should we think about unused rooms cleanup? What overhead does an existing room have?
The text was updated successfully, but these errors were encountered: