From 7771ea63f1cb382c6db645bf9f68479c5a51041c Mon Sep 17 00:00:00 2001 From: cheetahadmin Date: Wed, 27 Aug 2025 08:15:57 +0000 Subject: [PATCH] Update dags/groupuser/test.py --- dags/groupuser/test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dags/groupuser/test.py b/dags/groupuser/test.py index 8776518..dd3b441 100644 --- a/dags/groupuser/test.py +++ b/dags/groupuser/test.py @@ -27,6 +27,9 @@ with DAG( schedule='@once', start_date=datetime(2025, 8, 11, tzinfo=KST), catchup=False, + access_control={ + "groupuser": {"can_read", "can_edit"}, + } ) as dag: t1 = PythonOperator(task_id='task1', python_callable=task1) t2 = PythonOperator(task_id='task2', python_callable=task2)