mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
62d81ed842
Includes the ability to 'test' the appservice. This doesn't bother checking if the URL is set up correctly because we don't actually care about the transactions.
22 lines
907 B
HTML
22 lines
907 B
HTML
<div class="dialog">
|
|
<div class="dialog-header">
|
|
<h4>go-neb appservice configuration</h4>
|
|
</div>
|
|
<div class="dialog-content" *ngIf="isLoading">
|
|
<my-spinner></my-spinner>
|
|
</div>
|
|
<div class="dialog-content" *ngIf="!isLoading">
|
|
Copy and paste this configuration to <code>appservice-{{appservice.id}}.yaml</code> on your homeserver and
|
|
register it as an application service.
|
|
<br/>
|
|
<pre>{{appserviceConfig}}</pre>
|
|
</div>
|
|
<div class="dialog-footer" *ngIf="!isLoading">
|
|
<button type="button" (click)="dialog.close()" title="save" class="btn btn-primary btn-sm">
|
|
<i class="far fa-times-circle"></i> Close
|
|
</button>
|
|
<button type="button" (click)="test()" title="close" class="btn btn-secondary btn-sm">
|
|
<i class="fa fa-exchange-alt"></i> Test Configuration
|
|
</button>
|
|
</div>
|
|
</div> |