You are here

function zoomapi_zoomapi_user_create in Zoom API 7.2

Implements hook_zoomapi_user_create().

The user update api allows for more user properties than the user create api so we hook into the user create to call the user update immediately afterwards.

File

./zoomapi.module, line 259
Main file for the Zoom API module.

Code

function zoomapi_zoomapi_user_create($zoom_user, $account) {
  $user_info['timezone'] = zoomapi_get_account_timezone($account);
  zoomapi_update_user($account, $user_info);
}