When you create a meeting or call you are added to the invitees list automatically by default.
To remove this functionality you will need to edit these files
modules/Calls/CallFormBase.php and look for this line
PHP Code:
$focus->set_accept_status($current_user, 'accept');
and comment it out or remove it
then in the jssource/src_files/modules/Meetings/jsclass_scheduler.js find these lines
PHP Code:
if(typeof (GLOBAL_REGISTRY.focus.users_arr) == 'undefined' || GLOBAL_REGISTRY.focus.users_arr.length == 0) {
GLOBAL_REGISTRY.focus.users_arr = [ GLOBAL_REGISTRY.current_user ];
}
and comment them out or remove them and then finally in the
modules/Meetings/MeetingFormBase.php and look for this line
PHP Code:
$focus->set_accept_status($current_user, 'accept');
and comment it out or remove it
You will then have to run a Admin->Repair->Rebuild JS Compressed Files and that should make it so that the person creating the meeting is not automatically joined to it.
Make backups first just in case you need to put it back for some reason.
Bookmarks