joaopamaral commented on issue #42214:
URL: https://github.com/apache/airflow/issues/42214#issuecomment-2352728160
Hi @Blizzke, the access control with Resource definition only works in
airflow >= 2.10.x and FAB >= 1.3.x:
- This access_control doesn't work in airflow 2.9.3:
```python
access_control={
"Viewer": {"DAGs": {"can_edit", "can_read", "can_delete"}, "DAG
Runs": {"can_create"}},
},
```
- This is the correct access control for airflow 2.9.3
```python
access_control={
"Viewer": {"can_edit", "can_read", "can_delete"},
},
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]