This is an automated email from the ASF dual-hosted git repository.
jasonliu pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 50a1d465a20 [v3-1-test] Fix ui get dags permission endpoint for user
without dag run permissions (#60979) (#60988)
50a1d465a20 is described below
commit 50a1d465a2030c652e8382b2ff071eb33636bdb3
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Jan 26 00:04:20 2026 +0800
[v3-1-test] Fix ui get dags permission endpoint for user without dag run
permissions (#60979) (#60988)
(cherry picked from commit cb8debb36ec9776ea7331ecbfaf0f030fc870f01)
Co-authored-by: Pierre Jeambrun <[email protected]>
---
airflow-core/src/airflow/api_fastapi/core_api/routes/ui/dags.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/airflow-core/src/airflow/api_fastapi/core_api/routes/ui/dags.py
b/airflow-core/src/airflow/api_fastapi/core_api/routes/ui/dags.py
index 4ab981ab223..e1af93e746e 100644
--- a/airflow-core/src/airflow/api_fastapi/core_api/routes/ui/dags.py
+++ b/airflow-core/src/airflow/api_fastapi/core_api/routes/ui/dags.py
@@ -78,7 +78,6 @@ dags_router = AirflowRouter(prefix="/dags", tags=["DAG"])
response_model_exclude_none=True,
dependencies=[
Depends(requires_access_dag(method="GET")),
- Depends(requires_access_dag("GET", DagAccessEntity.RUN)),
],
operation_id="get_dags_ui",
)