2018-03-24 14:18:38 -04:00
|
|
|
<div class="dialog">
|
|
|
|
<div class="dialog-header">
|
2020-10-23 07:30:20 -04:00
|
|
|
<h4>{{'go-neb appservice configuration' | translate}}</h4>
|
2018-03-24 14:18:38 -04:00
|
|
|
</div>
|
|
|
|
<div class="dialog-content" *ngIf="isLoading">
|
|
|
|
<my-spinner></my-spinner>
|
|
|
|
</div>
|
|
|
|
<div class="dialog-content" *ngIf="!isLoading">
|
2020-10-23 07:30:20 -04:00
|
|
|
{{'Copy and paste this configuration to' | translate}} <code>appservice-{{appservice.id}}.yaml</code>
|
|
|
|
{{'on your homeserver and register it as an application service.' | translate}}
|
2018-03-24 14:18:38 -04:00
|
|
|
<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">
|
2020-10-23 07:30:20 -04:00
|
|
|
<i class="far fa-times-circle"></i> {{'Close' | translate}}
|
2018-03-24 14:18:38 -04:00
|
|
|
</button>
|
|
|
|
<button type="button" (click)="test()" title="close" class="btn btn-secondary btn-sm">
|
2020-10-23 07:30:20 -04:00
|
|
|
<i class="fa fa-exchange-alt"></i> {{'Test Configuration' | translate}}
|
2018-03-24 14:18:38 -04:00
|
|
|
</button>
|
|
|
|
</div>
|
2020-10-23 07:30:20 -04:00
|
|
|
</div>
|