Skip to content

Commit

Permalink
fix: db validate parameters permission (#24185)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgaspar authored and eschutho committed Jun 13, 2023
1 parent 8d32525 commit e804489
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions UPDATING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ This file documents any backwards-incompatible changes in Superset and
assists people when migrating to a new version.

## 2.1.1
- [24185](https://github.com/apache/superset/pull/24185): `/api/v1/database/test_connection` and `api/v1/database/validate_parameters` permissions changed from `can_read` to `can_write`. Only Admin user's have access.

### Other

Expand Down
4 changes: 2 additions & 2 deletions superset/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ class RouteMethod: # pylint: disable=too-few-public-methods
"select_star": "read",
"table_metadata": "read",
"table_extra_metadata": "read",
"test_connection": "read",
"validate_parameters": "read",
"test_connection": "write",
"validate_parameters": "write",
"favorite_status": "read",
"thumbnail": "read",
"import_": "write",
Expand Down

0 comments on commit e804489

Please sign in to comment.