mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-06 00:28:52 +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
345 B
SQL
17 lines
345 B
SQL
-- DataInsightsApplication should not allow configuration
|
|
UPDATE apps_marketplace
|
|
SET json = jsonb_set(
|
|
json::jsonb,
|
|
'{allowConfiguration}',
|
|
to_jsonb(false)
|
|
)
|
|
where name = 'DataInsightsApplication';
|
|
|
|
UPDATE installed_apps
|
|
SET json = jsonb_set(
|
|
json::jsonb,
|
|
'{allowConfiguration}',
|
|
to_jsonb(false)
|
|
)
|
|
where name = 'DataInsightsApplication';
|