-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HCK-7370, HCK-7371: details tab of any object only declared tag at sc (…
…#132) * HCK-7370: change level configs for level tags * HCK-7370: add adapter config * HCK-7370: fix creating a tag with empty value * HCK-7852: add disable input for tag value if tag name is not selected (#141) --------- Co-authored-by: chulanovskyi-bs <[email protected]>
- Loading branch information
1 parent
7b6add4
commit 81bd10e
Showing
6 changed files
with
1,751 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/** | ||
* Copyright © 2016-2024 by IntegrIT S.A. dba Hackolade. All rights reserved. | ||
* | ||
* The copyright to the computer software herein is the property of IntegrIT S.A. | ||
* The software may be used and/or copied only with the written permission of | ||
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in | ||
* the agreement/contract under which the software has been supplied. | ||
* | ||
* { | ||
* "add": { | ||
* "entity": [<names of new property>], | ||
* "container": [<names of new property>], | ||
* "model": [<names of new property>], | ||
* "view": [<names of new property>], | ||
* "field": { | ||
* "<type>": [<names of new property>] | ||
* } | ||
* }, | ||
* "delete": { | ||
* "entity": [<names of new property>], | ||
* "container": [<names of new property>], | ||
* "model": [<names of new property>], | ||
* "view": [<names of new property>], | ||
* "field": { | ||
* "<type>": [<names of new property>] | ||
* } | ||
* }, | ||
* "modify": { | ||
* "entity": [ | ||
* { | ||
* "from": { <properties that identify record> }, | ||
* "to": { <properties that need to be changed> } | ||
* } | ||
* ], | ||
* "container": [], | ||
* "model": [], | ||
* "view": [], | ||
* "field": [] | ||
* }, | ||
* } | ||
*/ | ||
|
||
{ | ||
"modify": { | ||
"model": [ | ||
[ | ||
"populateByPropertySource", | ||
{ | ||
"modify": { | ||
"container": [["getNameFromDottedIdentifier", "tagName", "schemaTags"]], | ||
"entity": [["getNameFromDottedIdentifier", "tagName", "tableTags"]], | ||
"view": [["getNameFromDottedIdentifier", "tagName", "viewTags"]], | ||
"field": [["getNameFromDottedIdentifier", "tagName", "columnTags"]] | ||
} | ||
} | ||
] | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.