mirror of
https://github.com/linuxserver/Heimdall-Apps.git
synced 2026-02-04 19:06:22 +08:00
* feat: add Readeck integration with live stats and config Add support for Readeck application including live stats display for bookmarks count and configuration options for API key and URL override * style: fix constructor formatting in Readeck class * refactor: remove empty constructor from Readeck class --------- Co-authored-by: Lucas Araujo <lucas.ribeiro.de.araujo@rabobank.nl>
16 lines
739 B
PHP
16 lines
739 B
PHP
<h2>{{ __('app.apps.config') }} ({{ __('app.optional') }}) @include('items.enable')</h2>
|
|
<div class="items">
|
|
<div class="input">
|
|
<label>{{ strtoupper(__('app.url')) }}</label>
|
|
{!! Form::text('config[override_url]', null, array('placeholder' => __('app.apps.override'), 'id' => 'override_url', 'class' => 'form-control')) !!}
|
|
</div>
|
|
<div class="input">
|
|
<label>{{ __('app.apps.apikey') }}</label>
|
|
{!! Form::text('config[apikey]', null, array('placeholder' => __('app.apps.apikey'), 'data-config' => '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>
|
|
|