File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/officehours_api/backends Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -149,12 +149,12 @@ def _create_meeting(cls, user: User) -> ZoomMeeting:
149149 contact_email = user .email ,
150150 contact_name = user .get_full_name (),
151151 enforce_login = True ,
152- host_video = True ,
152+ host_video = False ,
153153 in_meeting = False ,
154154 join_before_host = False ,
155155 meeting_authentication = False ,
156156 mute_upon_entry = False ,
157- participant_video = True ,
157+ participant_video = False ,
158158 registrants_email_notification = False ,
159159 use_pmi = False ,
160160 waiting_room = True ,
@@ -167,6 +167,7 @@ def _create_meeting(cls, user: User) -> ZoomMeeting:
167167 start_time = datetime .now ().strftime ('%Y-%m-%dT%H:%M:%SZ' ),
168168 duration_min = 60 ,
169169 timezone = 'America/Detroit' ,
170+ password = ' ' ,
170171 settings = meeting_settings
171172 )
172173 except ZoomAPIError :
You can’t perform that action at this time.
0 commit comments