Skip to content

Commit

Permalink
feat(MeetingsData): replace empty objects with null
Browse files Browse the repository at this point in the history
  • Loading branch information
akoushke committed Nov 22, 2019
1 parent 6f53f67 commit e205748
Showing 1 changed file with 43 additions and 31 deletions.
74 changes: 43 additions & 31 deletions src/data/meetings.json
Original file line number Diff line number Diff line change
@@ -1,53 +1,65 @@
{
"loadingMeeting" : {
"loadingMeeting": {
"ID": null
},
"scheduledMeeting": {
"ID": "scheduledMeeting",
"title": "Our Scheduled Meeting",
"startTime": "2019-08-20T21:00:00.000Z",
"endTime": "2019-08-20T22:00:00.000Z",
"localVideo": {},
"remoteVideo": {},
"localAudio": {},
"remoteAudio": {},
"localShare": {},
"remoteShare": {}
"localVideo": null,
"remoteVideo": null,
"localAudio": null,
"remoteAudio": null,
"localShare": null,
"remoteShare": null
},
"oneOnOneMeeting": {
"ID": "oneOnOneMeeting",
"title": "Jackie Tester's Personal Room",
"startTime": "",
"endTime": "",
"localVideo": {},
"remoteVideo": {},
"localAudio": {},
"remoteAudio": {},
"localShare": {},
"remoteShare": {}
"startTime": null,
"endTime": null,
"localVideo": null,
"remoteVideo": null,
"localAudio": null,
"remoteAudio": null,
"localShare": null,
"remoteShare": null
},
"spaceMeeting": {
"ID": "spaceMeeting",
"title": "Ad Hoc Meeting Space",
"startTime": "",
"endTime": "",
"localVideo": {},
"remoteVideo": {},
"localAudio": {},
"remoteAudio": {},
"localShare": {},
"remoteShare": {}
"startTime": null,
"endTime": null,
"localVideo": null,
"remoteVideo": null,
"localAudio": null,
"remoteAudio": null,
"localShare": null,
"remoteShare": null
},
"noMeetingTitle": {
"ID": "noMeetingTitle",
"title": "",
"startTime": "",
"endTime": "",
"title": null,
"startTime": null,
"endTime": null,
"localVideo": null,
"remoteVideo": null,
"localAudio": null,
"remoteAudio": null,
"localShare": null,
"remoteShare": null
},
"localVideo": {
"ID": "localVideo",
"title": null,
"startTime": null,
"endTime": null,
"localVideo": {},
"remoteVideo": {},
"localAudio": {},
"remoteAudio": {},
"localShare": {},
"remoteShare": {}
"remoteVideo": null,
"localAudio": null,
"remoteAudio": null,
"localShare": null,
"remoteShare": null
}
}

0 comments on commit e205748

Please sign in to comment.