kaxil commented on code in PR #61675:
URL: https://github.com/apache/airflow/pull/61675#discussion_r2784500448
##########
airflow-core/src/airflow/api_fastapi/core_api/security.py:
##########
@@ -270,6 +278,9 @@ def depends_permitted_dags_filter(
ReadableTagsFilterDep = Annotated[
PermittedTagFilter, Depends(permitted_dag_filter_factory("GET",
PermittedTagFilter))
]
+ReadableDagVersionsFilterDep = Annotated[
+ PermittedTagFilter, Depends(permitted_dag_filter_factory("GET",
PermittedDagVersionFilter))
+]
Review Comment:
Shouldn't this be:
```suggestion
ReadableDagVersionsFilterDep = Annotated[
PermittedDagVersionFilter, Depends(permitted_dag_filter_factory("GET",
PermittedDagVersionFilter))
]
```
--
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]