mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-04 14:29:45 +00:00
42 lines
1.7 KiB
HTML
42 lines
1.7 KiB
HTML
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-buttons slot="start">
|
|
<pwa-back-button></pwa-back-button>
|
|
</ion-buttons>
|
|
<ion-title>Privacy and Security</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ion-content class="ion-padding-top" *ngIf="patch.data['server-info'] as server">
|
|
|
|
<ion-item-group>
|
|
<ion-item-divider>General</ion-item-divider>
|
|
<ion-item button (click)="serverConfig.presentAlert('share-stats', server['share-stats'])">
|
|
<ion-label>Report Bugs</ion-label>
|
|
<ion-note slot="end">{{ server['share-stats'] ? 'Enabled' : 'Disabled' }}</ion-note>
|
|
</ion-item>
|
|
|
|
<ion-item-divider>Marketplace</ion-item-divider>
|
|
<ion-item button (click)="serverConfig.presentAlert('auto-check-updates', patch.data.ui['auto-check-updates'])">
|
|
<ion-label>Auto Check for Updates</ion-label>
|
|
<ion-note slot="end">{{ patch.data.ui['auto-check-updates'] ? 'Enabled' : 'Disabled' }}</ion-note>
|
|
</ion-item>
|
|
<!-- <ion-item button (click)="presentModalValueEdit('packageMarketplace', server['package-marketplace'])">
|
|
<ion-label>Package Marketplace</ion-label>
|
|
<ion-note slot="end">{{ server['package-marketplace'] }}</ion-note>
|
|
</ion-item> -->
|
|
|
|
<ion-item-divider>Security</ion-item-divider>
|
|
<!-- <ion-item button (click)="presentModalValueEdit('password')">
|
|
<ion-label>Change Password</ion-label>
|
|
<ion-note slot="end">********</ion-note>
|
|
</ion-item> -->
|
|
<ion-item detail="true" button [routerLink]="['ssh-keys']">
|
|
<ion-label>SSH Keys</ion-label>
|
|
</ion-item>
|
|
<ion-item detail="true" button [routerLink]="['sessions']">
|
|
<ion-label>Active Sessions</ion-label>
|
|
</ion-item>
|
|
</ion-item-group>
|
|
|
|
</ion-content> |