Skip to content

Commit 777a0ad

Browse files
authored
Fixes #580 - Set no default password and turn off video (#581)
1 parent 94c1b29 commit 777a0ad

File tree

1 file changed

+3
-2
lines changed
  • src/officehours_api/backends

1 file changed

+3
-2
lines changed

src/officehours_api/backends/zoom.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)