Have got soft and hard deleting

This commit is contained in:
Leon Mika 2026-02-23 21:18:34 +11:00
parent aef3bb6a1e
commit 3ea5823ca0
27 changed files with 588 additions and 55 deletions

View file

@ -35,7 +35,7 @@ func (p *Publisher) Publish(ctx context.Context, site models.Site) error {
}
// Fetch all content of site
posts, err := p.db.SelectPostsOfSite(ctx, site.ID)
posts, err := p.db.SelectPostsOfSite(ctx, site.ID, false)
if err != nil {
return err
}