adding a lot of ui changes and dynamic all

This commit is contained in:
Arjun Patel
2022-01-17 14:09:10 -08:00
parent eb77955f39
commit 8f094fd615
9 changed files with 350 additions and 377 deletions
+5
View File
@@ -10,6 +10,8 @@ export default class Room {
members: string[]; //userIds of "mandatory"/invited people including the person who created it
membersInRoom: string[];
attachments: string[]; // the links themselves (NOT Ids)...there will be duplicate entries in the attachments table which will be created
type: RoomType;
@@ -18,10 +20,13 @@ export default class Room {
createdDate: Timestamp;
createdByUserId: string;
teamId: string;
}
export enum RoomType {
now = "now",
scheduled = "scheduled", // one time sort of standard meeting
recurring = "recurring", //daily standup
archived = "archived", // this room is dead or over
}