Skip to content

Commit

Permalink
Show participants emails on videoconference admin view - refs BT#11636
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelFQC committed Oct 25, 2016
1 parent a3feab4 commit 7055a50
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions plugin/bbb/admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@
foreach ($meetings as &$meeting) {
$participants = $bbb->findMeetingParticipants($meeting['id']);

/** @var User $participant */
foreach ($participants as $participant) {
$meeting['participants'][] = $participant['participant']->getCompleteName();
foreach ($participants as $meetingParticipant) {
/** @var User $participant */
$participant = $meetingParticipant['participant'];
$meeting['participants'][] = $participant->getCompleteName()
. ' (' . $participant->getEmail() . ')';
}
}

Expand Down

0 comments on commit 7055a50

Please sign in to comment.