feedback page

This commit is contained in:
Davide Scaini
2026-04-10 13:58:12 +02:00
parent 6d3673b2f7
commit 4593478863
3 changed files with 191 additions and 1 deletions
+25
View File
@@ -277,6 +277,31 @@ incremental sync from the same modal.
---
## Reading user feedback
Users can submit feedback from the **Feedback** link in the nav (visible when logged in).
Submissions are stored as JSON on the server:
```
/var/bincio/data/_feedback/
{handle}.json ← one file per user, array of submissions
{handle}/ ← attached images
```
To read all feedback:
```bash
cat /var/bincio/data/_feedback/*.json | python3 -m json.tool
```
Per-user only:
```bash
cat /var/bincio/data/_feedback/pres.json | python3 -m json.tool
```
---
## Day-to-day operations
| Task | Command |