Esempio n. 1
0
        public async Task PostCancelMeeting(string roomId, string uniqueId)
        {
            var room = _roomRepository.GetRoomInfo(roomId);

            await AssertRoomIsFromOrg(room);

            await _conferenceRoomService.CancelMeeting(room, uniqueId);
        }
Esempio n. 2
0
 public void PostAbandonMeeting(string roomAddress, string securityKey, string uniqueId)
 {
     _conferenceRoomService.CancelMeeting(roomAddress, uniqueId, securityKey);
 }