First commit

This commit is contained in:
2026-03-25 20:50:17 -03:00
commit c3f3efbf33
6 changed files with 626 additions and 0 deletions

23
configure.phtml Normal file
View 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>