Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/plugin/zoom/lib/API/MeetingRegistrant.php

22 lines
414 B

<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\PluginBundle\Zoom\API;
/**
* Class Registrant.
*
* Structure of the information to send the server in order to register someone to a meeting.
*/
class MeetingRegistrant extends RegistrantSchema
{
public $auto_approve;
public function __construct()
{
parent::__construct();
$this->auto_approve = true;
}
}