Skip to content

Commit 6db3a36

Browse files
author
etobiak
committed
Updated EI Instance Info page with more info.
1 parent f2d2cba commit 6db3a36

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

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)