24 lines
520 B
PHTML
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>
|