Remove console view in app configure screen

This commit is contained in:
Johannes Zellner
2020-11-16 14:42:55 +01:00
parent 5435f3f9c1
commit 0dcf82a120
2 changed files with 0 additions and 17 deletions

View File

@@ -492,7 +492,6 @@
<div ng-click="setView('email')" ng-class="{ 'active': view === 'email' }" ng-show="app.manifest.addons.sendmail || app.manifest.addons.recvmail">Email</div>
<div ng-click="setView('updates')" ng-class="{ 'active': view === 'updates' }">Updates</div>
<div ng-click="setView('backups')" ng-class="{ 'active': view === 'backups' }">Backups</div>
<div ng-click="setView('console')" ng-class="{ 'active': view === 'console' }">Console</div>
<div ng-click="setView('repair')" ng-class="{ 'active': view === 'repair' }">Repair</div>
<div ng-click="setView('uninstall')" ng-class="{ 'active': view === 'uninstall' }">Uninstall</div>
</div>
@@ -1091,18 +1090,6 @@
</div>
</div>
<div class="card" ng-show="view === 'console'">
<div class="row">
<div class="col-md-12">
<label class="control-label">Console Access</label>
<p>This will open a console connection to the app. The terminal is sandboxed and only provides access to this app container's filesystem.</p>
<a class="btn btn-primary pull-right" ng-href="{{ (app.installationState === 'installed' && (app.health === 'healthy' || app.debugMode)) ? '/terminal.html?id=' + app.id : '' }}" ng-disabled="app.installationState !== 'installed' || (app.health !== 'healthy' && !app.debugMode)" tooltip-class="long" tooltip-enable="app.installationState !== 'installed' || app.health !== 'healthy'" uib-tooltip="App is not running. If app is constantly restarting, Repair it first." target="_blank">Terminal</a>
<a class="btn btn-primary pull-right" ng-href="{{ '/filemanager.html?appId=' + app.id }}" target="_blank">File Manager</a>
<a class="btn btn-primary pull-right" ng-href="{{ '/logs.html?appId=' + app.id }}" target="_blank">Logs</a>
</div>
</div>
</div>
<div class="card" ng-show="view === 'repair'">
<div class="row">
<div class="col-md-12">