Skip to content

Commit

Permalink
formar members object
Browse files Browse the repository at this point in the history
  • Loading branch information
JhontSouth committed Aug 14, 2023
1 parent d041084 commit 0798135
Showing 1 changed file with 24 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1281,8 +1281,18 @@ public async Task TestMeetingParticipantsJoinEvent()
Name = "application/vnd.microsoft.meetingParticipantJoin",
Value = JObject.Parse(@"{
Members: [
{User: {Id: 'id', Name: 'name'},
Meeting: {Role: 'role', InMeeting: true}}
{
User:
{
Id: 'id',
Name: 'name'
},
Meeting:
{
Role: 'role',
InMeeting: true
}
}
]
}"),
};
Expand Down Expand Up @@ -1319,8 +1329,18 @@ public async Task TestMeetingParticipantsLeaveEvent()
Name = "application/vnd.microsoft.meetingParticipantLeave",
Value = JObject.Parse(@"{
Members: [
{User: {Id: 'id', Name: 'name'},
Meeting: {Role: 'role', InMeeting: false}}
{
User:
{
Id: 'id',
Name: 'name'
},
Meeting:
{
Role: 'role',
InMeeting: true
}
}
]
}"),
};
Expand Down

0 comments on commit 0798135

Please sign in to comment.