public async Task PostCancelMeeting(string roomId, string uniqueId) { var room = _roomRepository.GetRoomInfo(roomId); await AssertRoomIsFromOrg(room); await _conferenceRoomService.CancelMeeting(room, uniqueId); }
public void PostAbandonMeeting(string roomAddress, string securityKey, string uniqueId) { _conferenceRoomService.CancelMeeting(roomAddress, uniqueId, securityKey); }