From 257ab18d69a1937622f9d2044b24605af51b2d13 Mon Sep 17 00:00:00 2001 From: mohsentaba Date: Wed, 10 Jun 2026 13:35:51 +0330 Subject: [PATCH] auto record and disabled --- apps/course/views/live_session.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/course/views/live_session.py b/apps/course/views/live_session.py index 38cee36..d9fc04c 100644 --- a/apps/course/views/live_session.py +++ b/apps/course/views/live_session.py @@ -286,8 +286,8 @@ class CourseLiveSessionRoomCreateAPIView(GenericAPIView): 'recording_features': { 'is_allow': True, 'is_allow_cloud': True, - 'is_allow_local': True, - 'enable_auto_cloud_recording': True, + 'is_allow_local': False, + 'enable_auto_cloud_recording': False, 'only_record_admin_webcams': False, }, }, @@ -506,8 +506,8 @@ class CourseLiveSessionTokenAPIView(GenericAPIView): 'recording_features': { 'is_allow': True, 'is_allow_cloud': True, - 'is_allow_local': True, - 'enable_auto_cloud_recording': True, + 'is_allow_local': False, + 'enable_auto_cloud_recording': False, 'only_record_admin_webcams': False, }, },