89 lines
1.7 KiB
TypeScript
89 lines
1.7 KiB
TypeScript
const userLites = [
|
|
{
|
|
uuid: "0",
|
|
emailAddress: "cth0604@gmail.com",
|
|
name: "Taehee Choi",
|
|
role: "Front-end Dev",
|
|
},
|
|
{
|
|
uuid: "1",
|
|
emailAddress: "cth0604@gmail.com",
|
|
name: "Arthur Marques",
|
|
role: "Team Lead",
|
|
},
|
|
{
|
|
uuid: "2",
|
|
emailAddress: "cth0604@gmail.com",
|
|
name: "Mathew Balsdon",
|
|
role: "Front-end Dev",
|
|
},
|
|
{
|
|
uuid: "3",
|
|
emailAddress: "cth0604@gmail.com",
|
|
name: "Benson Lin",
|
|
role: "Back-end Dev",
|
|
},
|
|
{
|
|
uuid: "4",
|
|
emailAddress: "cth0604@gmail.com",
|
|
name: "Jincheng Lu",
|
|
role: "Front-end Dev",
|
|
},
|
|
{
|
|
uuid: "5",
|
|
emailAddress: "cth0604@gmail.com",
|
|
name: "Esteban Margaron",
|
|
role: "Back-end Dev",
|
|
},
|
|
{
|
|
uuid: "6",
|
|
emailAddress: "cth0604@gmail.com",
|
|
name: "Leanna Resurreccion",
|
|
role: "Back-end Dev",
|
|
},
|
|
];
|
|
|
|
const meetings = [
|
|
{
|
|
meetingId: "0",
|
|
liveParticipantIds: [],
|
|
registrantIds: ["0", "1", "2", "3", "4", "5", "6"],
|
|
start: "2022-03-13T17:00:00",
|
|
duration: 15,
|
|
timezone: "",
|
|
joinUrl: "",
|
|
topic: "Daily Scrum Meeting",
|
|
},
|
|
{
|
|
meetingId: "1",
|
|
liveParticipantIds: [],
|
|
registrantIds: ["0", "2", "4"],
|
|
start: "2022-03-16T17:30:00",
|
|
duration: 30,
|
|
timezone: "",
|
|
joinUrl: "",
|
|
topic: "Front-end Meeting",
|
|
},
|
|
{
|
|
meetingId: "2",
|
|
liveParticipantIds: ["3", "5"],
|
|
registrantIds: ["3", "5", "6"],
|
|
start: "2022-03-13T17:30:00",
|
|
duration: 30,
|
|
timezone: "",
|
|
joinUrl: "",
|
|
topic: "Back-end Meeting",
|
|
},
|
|
];
|
|
|
|
const team = {
|
|
user: "0",
|
|
manager: "1",
|
|
sameManager: ["2", "3", "4", "5", "6"],
|
|
directReports: [],
|
|
};
|
|
|
|
const favorites = ["2", "4"];
|
|
|
|
export { userLites, meetings, team, favorites };
|