2017-05-27 23:21:08 -04:00
|
|
|
<div id="wrapper">
|
2017-05-28 02:53:12 -04:00
|
|
|
<my-scalar-close></my-scalar-close>
|
2017-05-27 23:21:08 -04:00
|
|
|
<div *ngIf="error">
|
|
|
|
<p class="text-danger">{{ error }}</p>
|
|
|
|
</div>
|
|
|
|
<div *ngIf="loading && !error">
|
|
|
|
<p><i class="fa fa-circle-o-notch fa-spin"></i> Loading...</p>
|
|
|
|
</div>
|
|
|
|
<div *ngIf="!error && !loading">
|
|
|
|
<h3>Manage Integrations</h3>
|
2017-05-29 00:51:04 -04:00
|
|
|
<p>Turn on anything you like. If an integration has some special configuration, it will have a configuration
|
|
|
|
icon next to it.</p>
|
2017-05-27 23:21:08 -04:00
|
|
|
<div class="integration-container">
|
2017-05-29 00:51:04 -04:00
|
|
|
<my-integration *ngFor="let integration of integrations"
|
|
|
|
[integration]="integration"
|
|
|
|
[roomId]="roomId"
|
|
|
|
[scalarToken]="scalarToken"
|
|
|
|
(updated)="updateIntegration(integration)"></my-integration>
|
2017-05-27 23:21:08 -04:00
|
|
|
</div>
|
2017-05-27 03:27:36 -04:00
|
|
|
</div>
|
|
|
|
</div>
|