feat: add PostsPerPage to Site model and DB provider

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Leon Mika 2026-03-22 14:28:50 +11:00
parent 9b36a35c1a
commit 9919f3444a
2 changed files with 24 additions and 20 deletions

View file

@ -27,9 +27,10 @@ type Site struct {
GUID string
Created time.Time
Title string
Tagline string
Timezone string
Title string
Tagline string
Timezone string
PostsPerPage int
}
type SitePublishTarget struct {