Minor - Plugin zoom fix join URL

pull/3425/head
Julio Montoya 5 years ago
parent b55e7992c3
commit 0e30d7a63a
  1. 2
      plugin/zoom/Entity/RegistrantEntity.php
  2. 2
      plugin/zoom/lib/API/CreatedRegistration.php
  3. 2
      plugin/zoom/view/meeting.tpl

@ -168,7 +168,7 @@ class RegistrantEntity
public function joinUrl()
{
return $this->meetingRegistrant->join_url;
return $this->createdRegistration->join_url;
}
/**

@ -8,7 +8,7 @@ use Exception;
/**
* Class CreatedRegistration.
* An instance of this class is returned by the Zoom serveur upon recording a registrant to a meeting.
* An instance of this class is returned by the Zoom server upon recording a registrant to a meeting.
*/
class CreatedRegistration
{

@ -68,7 +68,7 @@
{{ registrant.fullName }}
</td>
<td>
{% if registrant.join_url %}
{% if registrant.joinUrl %}
<a class="btn btn-primary" onclick="copyJoinURL(event, '{{ registrant.joinUrl }}')">
{{ 'CopyJoinAsURL'|get_plugin_lang('ZoomPlugin') }}
</a>

Loading…
Cancel
Save