First commit
This commit is contained in:
23
configure.phtml
Normal file
23
configure.phtml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user