2017-12-23 21:45:34 -05:00
|
|
|
<div *ngIf="isLoading">
|
|
|
|
<my-spinner></my-spinner>
|
|
|
|
</div>
|
|
|
|
<div *ngIf="!isLoading">
|
2019-04-13 18:29:53 -04:00
|
|
|
<my-ibox boxTitle="Configuration">
|
2017-12-23 21:45:34 -05:00
|
|
|
<div class="my-ibox-content">
|
2019-07-11 00:17:16 -04:00
|
|
|
<p>
|
|
|
|
Parts of your configuration are displayed below. To change these values, edit your configuration and
|
|
|
|
restart Dimension.
|
|
|
|
</p>
|
2017-12-23 21:45:34 -05:00
|
|
|
|
|
|
|
<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">
|
2019-07-11 00:17:16 -04:00
|
|
|
<strong>Homeserver</strong><br/>
|
|
|
|
Name: {{ config.homeserver.name }}<br/>
|
|
|
|
Federation URL: {{ config.homeserver.federationUrl }}<br/>
|
|
|
|
Federation Hostname: {{ config.homeserver.federationHostname }}<br/>
|
|
|
|
Client/Server URL: {{ config.homeserver.clientServerUrl }}<br/>
|
2018-03-24 19:09:34 -04:00
|
|
|
Utility User ID: {{ config.homeserver.userId }}
|
2017-12-23 21:45:34 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-03-12 21:08:12 -04:00
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-4">
|
2019-07-11 00:17:16 -04:00
|
|
|
<strong>Sessions</strong><br/>
|
|
|
|
Tokens registered: {{ config.sessionInfo.numTokens }}<br/>
|
2019-03-12 21:08:12 -04:00
|
|
|
<button class="btn btn-danger btn-sm" type="button" (click)="logoutAll()">
|
|
|
|
Logout Everyone
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-12-23 21:45:34 -05:00
|
|
|
</div>
|
|
|
|
</my-ibox>
|
|
|
|
</div>
|