ajout heimdall

This commit is contained in:
2025-01-01 11:24:01 +01:00
parent f8be42e486
commit c52f60fca9
1477 changed files with 15692 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<h2>{{ __('app.apps.config') }} ({{ __('app.optional') }}) @include('items.enable')</h2>
<h5>{{ __('app.apps.only_admin_account') }}</h5>
<div class="items">
<div class="input">
<label>Health Token</label>
<small>Admin Area &raquo; Monitoring &raquo; Health Check</small>
{!! Form::text('config[health_apikey]', isset($item) ? $item->getconfig()->health_apikey : null, ['placeholder' => 'Health Token', 'data-config' => 'health_apikey', 'id' => 'health_apikey', 'class' => 'form-control config-item']) !!}
</div>
<div class="input">
<label>Private API-Read Token</label>
<small>User Settings &raquo; Access Tokens</small>
{!! Form::text('config[private_apikey]', isset($item) ? $item->getconfig()->private_apikey : null, ['placeholder' => __('app.apps.apikey'), 'data-config' => 'private_apikey', 'id' => 'private_apikey', 'class' => 'form-control config-item']) !!}
</div>
<div class="input">
<button style="margin-top: 32px;" class="btn test" id="test_config">Test</button>
</div>
</div>