* 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
28 lines
893 B
HTML
28 lines
893 B
HTML
<rd-header>
|
|
<rd-header-title title-text="Service list">
|
|
<a data-toggle="tooltip" title="Refresh" ui-sref="docker.services" ui-sref-opts="{reload: true}">
|
|
<i class="fa fa-sync" aria-hidden="true"></i>
|
|
</a>
|
|
</rd-header-title>
|
|
<rd-header-content>Services</rd-header-content>
|
|
</rd-header>
|
|
|
|
<div class="row" ng-if="services">
|
|
<div class="col-sm-12">
|
|
<services-datatable
|
|
title-text="Services"
|
|
title-icon="fa-list-alt"
|
|
dataset="services"
|
|
table-key="services"
|
|
order-by="Name"
|
|
nodes="nodes"
|
|
agent-proxy="applicationState.endpoint.mode.agentProxy"
|
|
show-update-action="applicationState.endpoint.apiVersion >= 1.25"
|
|
show-task-logs-button="applicationState.endpoint.apiVersion >= 1.30"
|
|
show-add-action="true"
|
|
show-stack-column="true"
|
|
refresh-callback="getServices"
|
|
></services-datatable>
|
|
</div>
|
|
</div>
|