async getAttendee()

in src/room/MeetingManager.tsx [103:111]


  async getAttendee(attendeeId: string): Promise<string> {
    const response = await fetch(
      `${BASE_URL}attendee?title=${encodeURIComponent(
        this.title
      )}&attendee=${encodeURIComponent(attendeeId)}`
    );
    const json = await response.json();
    return json.AttendeeInfo.Name;
  }