Files
xExtension-BlueskyThreads/configure.phtml
2026-03-25 20:50:17 -03:00

24 lines
520 B
PHTML

<?php
if (!defined('FRESHRSS')) {
die();
}
/** @var BlueskyThreadsExtension $this */
$depth = (int) ($this->getUserConfigurationValue('depth') ?: 10);
?>
<table class="table-striped">
<tr>
<th>
<label for="depth">Thread depth</label>
</th>
<td>
<input type="number" id="depth" name="depth"
value="<?= $depth ?>" min="1" max="1000"
class="short">
<p class="help-block">
How many levels of replies to fetch (default: 10).
The Bluesky API allows up to 1000.
</p>
</td>
</tr>
</table>