mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-24 09:50:01 +00:00

* fix: allow config update for external app * Prep config * Add configs * fix: call configure app on saving of configurations * fix: add autocomplete widget for json schema forms * ORganize configuration handling * Allow config * Format * Fix test * Prep migrations for allowConfiguration * TODO * Add pg migrations * fix: add allowConfiguration support * Autotagger * Update install flow --------- Co-authored-by: Pere Miquel Brull <peremiquelbrull@gmail.com>
17 lines
395 B
SQL
17 lines
395 B
SQL
-- DataInsightsApplication should not allow configuration
|
|
update apps_marketplace
|
|
set json = JSON_INSERT(
|
|
JSON_REMOVE(json, '$.allowConfiguration'),
|
|
'$.allowConfiguration',
|
|
false
|
|
)
|
|
where name = 'DataInsightsApplication';
|
|
|
|
update installed_apps
|
|
set json = JSON_INSERT(
|
|
JSON_REMOVE(json, '$.allowConfiguration'),
|
|
'$.allowConfiguration',
|
|
false
|
|
)
|
|
where name = 'DataInsightsApplication';
|