feat: POST /api/v3/chats, chat room creation, plus openAPI docs update

This commit is contained in:
Julian Lam
2021-12-13 14:02:02 -05:00
parent 94bead71fe
commit 40b4544e70
9 changed files with 97 additions and 13 deletions

View File

@@ -0,0 +1,14 @@
RoomObject:
type: object
properties:
owner:
type: number
description: the uid of the chat room owner (usually the user who created the room initially)
roomId:
type: string
description: unique identifier for the chat room
roomName:
type: string
groupChat:
type: boolean
description: whether the chat room is a group chat or not