mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
* accordion works * cleanup * styling * more styling * App show change (#387) * show page change * no marketplace * app show changes * update marketplace list * icon * top left icon * toolbar * right size * out of toolbar * no service details * fix skeleton text and server metrics page * stuck * add session management * complete sessions feature * app show page * remove unnecessary icons * add cli to list of possible sessions * Modal global (#383) * modal checkpoint * global modal * black looks good now * black looks good now * not smaller Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com> Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com> Co-authored-by: Drew Ansbacher <drew.ansbacher@gmail.com> Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com> Co-authored-by: Matt Hill <matthewonthemoon@gmail.com> Co-authored-by: Matt Hill <MattDHill@users.noreply.github.com>
46 lines
2.0 KiB
HTML
46 lines
2.0 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)="presentModalValueEdit('shareStats', patch.data['server-info']['share-stats'])">
|
|
<ion-label>Share Anonymous Statistics</ion-label>
|
|
<ion-note slot="end">{{ patch.data['server-info']['share-stats'] }}</ion-note>
|
|
</ion-item>
|
|
|
|
<ion-item-divider>Marketplace</ion-item-divider>
|
|
<ion-item button (click)="presentModalValueEdit('autoCheckUpdates', patch.data.ui['auto-check-updates'])">
|
|
<ion-label>Auto Check for Updates</ion-label>
|
|
<ion-note slot="end">{{ patch.data.ui['auto-check-updates'] }}</ion-note>
|
|
</ion-item>
|
|
<ion-item button (click)="presentModalValueEdit('eosMarketplace', patch.data['server-info']['eos-marketplace'] === config.start9Marketplace.tor)">
|
|
<ion-label>Tor Only Marketplace</ion-label>
|
|
<ion-note slot="end">{{ patch.data['server-info']['eos-marketplace'] === config.start9Marketplace.tor }}</ion-note>
|
|
</ion-item>
|
|
<!-- <ion-item button (click)="presentModalValueEdit('packageMarketplace', patch.data['server-info']['package-marketplace'])">
|
|
<ion-label>Package Marketplace</ion-label>
|
|
<ion-note slot="end">{{ patch.data['server-info']['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> |