aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/Models
Commit message (Collapse)AuthorAgeFilesLines
* Add upload security: size limit, per-user and site-wide post capsThomas Vanbesien2026-03-221-0/+7
| | | | | | Reject base64 payloads over 10 MB, limit users to 50 posts each, and cap total posts at 10,000 (~650 MB on disk). Document upload security model in README.
* Add likes, comments, email notifications, and pagination to galleryThomas Vanbesien2026-03-212-0/+98
|
* Add editor with webcam/upload capture, overlay compositing, and gallery feedThomas Vanbesien2026-03-211-0/+71
|
* Add profile page for editing username, email, password, and notificationsThomas Vanbesien2026-03-211-0/+26
|
* Add user authentication with email verification and password resetThomas Vanbesien2026-03-211-0/+118
Implements registration, login/logout, email verification via token, and password reset flow. Includes CSRF protection, flash messages, MailPit for dev email testing, and security docs in README.