adding a lot of ui changes and dynamic all
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user