-
- Downloads
Retain property file path when revisiting database edit page (#20199)
* Retain property file path when revisiting database edit page Ensuring that the file path (if that is the secret type) is returned via the API response to the admin, so the UX on the form edit page is better This involved a lot of refactoring to clean up some stuff: * removed the population of inferred secret properties (ex: last updated timestamp and creator ID) from `handle-db-details-secret-prop!`, since that stores those values into the details blob, defeating some of the purpose of normalizing secrets into a separate table * moved the logic for injecting such inferred values to a new function, `expand-inferred-secret-values`, which lives within the secret model namespace * delegating existing calls that require such expansion to the new function * adding a new helper function, `reduce-over-details-secret-values`, to handle some common logic that is now showing up in a few places (reducing over db-details on secret values and doing some kind of manipulation) Adding new database API test to ensure that the file path value is, in fact, returned from the API
Showing
- src/metabase/api/database.clj 10 additions, 4 deletionssrc/metabase/api/database.clj
- src/metabase/models/database.clj 21 additions, 30 deletionssrc/metabase/models/database.clj
- src/metabase/models/secret.clj 80 additions, 4 deletionssrc/metabase/models/secret.clj
- test/metabase/api/database_test.clj 15 additions, 0 deletionstest/metabase/api/database_test.clj
- test/metabase/models/database_test.clj 5 additions, 4 deletionstest/metabase/models/database_test.clj
Please register or sign in to comment