Skip to content

Commit 08a718f

Browse files
authored
Added new info in EI Instance Info page and Remove gson version tag from pom file.
Added new info in EI Instance Info page and Remove gson version tag from pom file.
2 parents d29d2f1 + 6db3a36 commit 08a718f

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@
6868
<dependency>
6969
<groupId>com.google.code.gson</groupId>
7070
<artifactId>gson</artifactId>
71-
<version>2.8.4</version>
7271
</dependency>
7372
<!-- https://mvnrepository.com/artifact/junit/junit -->
7473
<dependency>

src/main/resources/static/js/eiInfo.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,16 @@ jQuery(document).ready(function() {
7777
tr.appendChild(tdValue);
7878
tbdy.appendChild(tr);
7979

80+
tr = document.createElement('tr');
81+
tdKey = document.createElement('td');
82+
tdKey.setAttribute('width', tableTdKeyWidth);
83+
tdKey.appendChild(document.createTextNode('EI Test Rules functionality enabled'));
84+
tr.appendChild(tdKey);
85+
tdValue = document.createElement('td');
86+
tdValue.appendChild(document.createTextNode(data.testRulesEnabled));
87+
tr.appendChild(tdValue);
88+
tbdy.appendChild(tr);
89+
8090

8191
tbl.appendChild(tbdy);
8292
body.appendChild(tbl);
@@ -144,11 +154,13 @@ jQuery(document).ready(function() {
144154
generateEIInformationBasedOnList(data.mongodb, "Eiffel Intelligence Connected MongoDb Instances");
145155
generateEIInformationBasedOnList(data.threads, "Eiffel Intelligence Backend Java Threads Settings");
146156
generateEIInformationBasedOnList(data.email, "Eiffel Intelligence Backend E-Mail Settings");
157+
generateEIInformationBasedOnList(data.mailServerValues, "Eiffel Intelligence Backend SMTP Settings");
147158
generateEIInformationBasedOnList(data.waitList, "Eiffel Intelligence Backend WaitList settings");
148159
generateEIInformationBasedOnList([data.objectHandler], "Eiffel Intelligence Backend ObjectHandler Settings");
149160
generateEIInformationBasedOnList([data.subscriptionHandler], "Eiffel Intelligence Backend SubscriptionHandler Settings");
150161
generateEIInformationBasedOnList([data.informSubscription], "Eiffel Intelligence Backend InformSubscription Settings");
151162
generateEIInformationBasedOnList([data.erUrl], "Eiffel Intelligence Backend EventRepository Url");
163+
generateEIInformationBasedOnList([data.ldap], "Eiffel Intelligence Backend LDAP Settings");
152164
}
153165
});
154166

0 commit comments

Comments
 (0)