Merge pull request #5945 from nextcloud/enh/5938/show-secret-in-interface

containers-schema: allow to specify ui-secret and show in aio interface
This commit is contained in:
Simon L. 2025-01-28 10:36:50 +01:00 committed by GitHub
commit 1eebe6fd60
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 42 additions and 4 deletions

View file

@ -282,6 +282,9 @@
{% if container.GetDocumentation() != '' %}
(<a href="{{ container.GetDocumentation() }}">docs</a>)
{% endif %}
{% if container.GetUiSecret() != '' %}
(password: {{ GetUiSecret.GetUiSecret() }} )
{% endif %}
</span>
{% elseif container.GetRunningState().value == 'running' %}
<span class="status success"></span>
@ -289,6 +292,9 @@
{% if container.GetDocumentation() != '' %}
(<a href="{{ container.GetDocumentation() }}">docs</a>)
{% endif %}
{% if container.GetUiSecret() != '' %}
(password: {{ GetUiSecret.GetUiSecret() }} )
{% endif %}
</span>
{% else %}
<span class="status error"></span>
@ -296,6 +302,9 @@
{% if container.GetDocumentation() != '' %}
(<a href="{{ container.GetDocumentation() }}">docs</a>)
{% endif %}
{% if container.GetUiSecret() != '' %}
(password: {{ GetUiSecret.GetUiSecret() }} )
{% endif %}
</span>
{% endif %}
</li>