mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
46 lines
1.8 KiB
HTML
46 lines
1.8 KiB
HTML
<div *ngIf="isLoading">
|
|
<my-spinner></my-spinner>
|
|
</div>
|
|
<div *ngIf="!isLoading">
|
|
<my-ibox boxTitle="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/>
|
|
Federation Hostname: {{ config.homeserver.federationHostname }}<br/>
|
|
Client/Server URL: {{ config.homeserver.clientServerUrl }}<br/>
|
|
Utility User ID: {{ config.homeserver.userId }}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<strong>Sessions</strong><br/>
|
|
Tokens registered: {{ config.sessionInfo.numTokens }}<br/>
|
|
<button class="btn btn-danger btn-sm" type="button" (click)="logoutAll()">
|
|
Logout Everyone
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</my-ibox>
|
|
</div> |