2017-12-23 21:45:34 -05:00
|
|
|
<div *ngIf="isLoading">
|
|
|
|
<my-spinner></my-spinner>
|
|
|
|
</div>
|
|
|
|
<div *ngIf="!isLoading">
|
|
|
|
<my-ibox title="Configuration">
|
|
|
|
<div class="my-ibox-content">
|
|
|
|
<p>Parts of your configuration are displayed below. To change these values, edit your configuration and restart Dimension.</p>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-4">
|
|
|
|
<strong>Administrators</strong>
|
|
|
|
<ul>
|
|
|
|
<li *ngFor="let user of config.admins trackById">{{ user }}</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
|
|
<strong>Widget Blacklist</strong>
|
|
|
|
<ul>
|
|
|
|
<li *ngFor="let ip of config.widgetBlacklist trackById">{{ ip }}</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
|
|
<strong>Homeserver</strong><br />
|
|
|
|
Name: {{ config.homeserver.name }}<br />
|
|
|
|
Federation URL: {{ config.homeserver.federationUrl }}<br />
|
2018-03-24 19:09:34 -04:00
|
|
|
Client/Server URL: {{ config.homeserver.clientServerUrl }}<br />
|
|
|
|
Utility User ID: {{ config.homeserver.userId }}
|
2017-12-23 21:45:34 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</my-ibox>
|
|
|
|
</div>
|