building a lot of the modal for the creating room and close to being done

This commit is contained in:
Arjun Patel
2022-01-16 22:25:09 -08:00
parent 2ada680e3e
commit 7a2385ef9e
4 changed files with 174 additions and 11 deletions
+22
View File
@@ -0,0 +1,22 @@
export default class Room {
id: string;
title: string;
subtitle: string;
roomLink: string; // google meet link for now
roomMembers: string[]; //userIds of "mandatory"/invited people including the person who created it
attachments: string[]; // the links themselves (NOT Ids)...there will be duplicate entries in the attachments table which will be created
roomType: RoomType;
approximateDateTime: string; // vaguely say when the meeting should be...give user pointers
}
enum RoomType {
now = "now",
scheduled = "scheduled", // one time sort of standard meeting
recurring = "recurring", //daily standup
}