b02749f877
* feat(auth): introduce new timeout constant * feat(auth): pass timeout from handler * feat(auth): add timeout selector to auth settings view * feat(settings): add user session timeout property * feat(auth): load user session timeout from settings * fix(settings): use correct time format * feat(auth): remove no-auth flag * refactor(auth): move timeout mgmt to jwt service * refactor(client): remove no-auth checks from client * refactor(cli): remove defaultNoAuth * feat(settings): create settings with default user timeout value * refactor(db): save user session timeout always * refactor(jwt): return error * feat(auth): set session timeout in jwt service on update * feat(auth): add description and time settings * feat(auth): parse duration * feat(settings): validate user timeout format * refactor(settings): remove unneccesary import
25 lines
895 B
HTML
25 lines
895 B
HTML
<rd-header>
|
|
<rd-header-title title-text="Container list">
|
|
<a data-toggle="tooltip" title="Refresh" ui-sref="docker.containers" ui-sref-opts="{reload: true}">
|
|
<i class="fa fa-sync" aria-hidden="true"></i>
|
|
</a>
|
|
</rd-header-title>
|
|
<rd-header-content>Containers</rd-header-content>
|
|
</rd-header>
|
|
<information-panel-offline ng-if="offlineMode"></information-panel-offline>
|
|
<div class="row">
|
|
<div class="col-sm-12" ng-if="containers">
|
|
<containers-datatable
|
|
title-text="Containers"
|
|
title-icon="fa-server"
|
|
dataset="containers"
|
|
table-key="containers"
|
|
order-by="Status"
|
|
show-host-column="applicationState.endpoint.mode.agentProxy && applicationState.endpoint.mode.provider === 'DOCKER_SWARM_MODE'"
|
|
show-add-action="true"
|
|
offline-mode="offlineMode"
|
|
refresh-callback="getContainers"
|
|
></containers-datatable>
|
|
</div>
|
|
</div>
|