This is an automated email from the ASF dual-hosted git repository.
husseinawala pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 1e6fa73575 fix wrong sample code for "dag level permissions" (#36350)
1e6fa73575 is described below
commit 1e6fa735752d61125903f0709b12cc1338789c5d
Author: oshyun <[email protected]>
AuthorDate: Fri Dec 22 08:53:10 2023 +0900
fix wrong sample code for "dag level permissions" (#36350)
---
docs/apache-airflow-providers-fab/auth-manager/access-control.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/apache-airflow-providers-fab/auth-manager/access-control.rst
b/docs/apache-airflow-providers-fab/auth-manager/access-control.rst
index 86ddfde1b4..c63894498e 100644
--- a/docs/apache-airflow-providers-fab/auth-manager/access-control.rst
+++ b/docs/apache-airflow-providers-fab/auth-manager/access-control.rst
@@ -259,7 +259,7 @@ Setting ``access_control`` on a DAG will overwrite any
previously existing DAG-l
dag_id="example_fine_grained_access",
start_date=pendulum.datetime(2021, 1, 1, tz="UTC"),
access_control={
- "Viewer": {"can_edit", "can_create", "can_delete"},
+ "Viewer": {"can_edit", "can_read", "can_delete"},
},
)