-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added operator to ms and icon in mfe api (#38)
- Loading branch information
1 parent
2a06819
commit fe8814a
Showing
9 changed files
with
36 additions
and
7 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.1" encoding="UTF-8" standalone="no"?> | ||
<databaseChangeLog | ||
xmlns="http://www.liquibase.org/xml/ns/dbchangelog" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd" | ||
objectQuotingStrategy="QUOTE_ONLY_RESERVED_WORDS"> | ||
|
||
<changeSet author="dev (generated)" id="1706808517706-9"> | ||
<addColumn tableName="microservice"> | ||
<column name="operator" type="BOOLEAN"> | ||
<constraints nullable="false"/> | ||
</column> | ||
</addColumn> | ||
</changeSet> | ||
</databaseChangeLog> |
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 |
---|---|---|
|
@@ -15,9 +15,9 @@ | |
operator="false" optlock="0" app_version="1.0.0" contact="[email protected]" description="some text" icon_name="sun" note="some notes" technology="Angular" creationDate="2024-01-11 12:21:38.914993" modificationDate="2024-01-11 12:21:38.914993" | ||
classification="searching"/> | ||
|
||
<MICROSERVICE guid="m1" app_id="ms1" product_name="product1" name="coolname" optlock="0" version="1.0.0"/> | ||
<MICROSERVICE guid="m2" app_id="ms2" product_name="product2" optlock="0"/> | ||
<MICROSERVICE guid="ms1" app_id="msOne" product_name="productOne" name="displayname-1" optlock="0" version="1.0.0" description="some text" creationDate="2024-01-11 12:21:38.914993" modificationDate="2024-01-11 12:21:38.914993" /> | ||
<MICROSERVICE guid="m1" app_id="ms1" product_name="product1" name="coolname" optlock="0" version="1.0.0" operator="false"/> | ||
<MICROSERVICE guid="m2" app_id="ms2" product_name="product2" optlock="0" operator="false"/> | ||
<MICROSERVICE guid="ms1" app_id="msOne" product_name="productOne" name="displayname-1" optlock="0" version="1.0.0" description="some text" creationDate="2024-01-11 12:21:38.914993" modificationDate="2024-01-11 12:21:38.914993" operator="false"/> | ||
|
||
<UI_ENDPOINT guid="ui1" microfrontend_id="m1" name="e1" path="p1" /> | ||
<UI_ENDPOINT guid="ui2" microfrontend_id="m1" name="e2" path="p2" /> | ||
|
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