mirror of
https://github.com/linuxserver/Heimdall-Apps.git
synced 2026-02-11 05:26:09 +08:00
18 lines
1010 B
PHP
18 lines
1010 B
PHP
<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 » Monitoring » 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 » 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>
|