diff options
| author | Fuwn <[email protected]> | 2026-02-14 21:28:21 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-14 21:28:21 -0800 |
| commit | 7493510908dfc9c348c40a90e0cde96f0434b3af (patch) | |
| tree | 84f792e8b1f69dbe70f0a15012fd5f784ee9791c /src/modules/blog/config.rs | |
| parent | fix(xml): Implement full XML 1.0 escaping and RSS-safe CDATA handling (diff) | |
| download | locus-7493510908dfc9c348c40a90e0cde96f0434b3af.tar.xz locus-7493510908dfc9c348c40a90e0cde96f0434b3af.zip | |
feat(blog): Treat Notion Hidden posts as private across site and RSS
Diffstat (limited to 'src/modules/blog/config.rs')
| -rw-r--r-- | src/modules/blog/config.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/blog/config.rs b/src/modules/blog/config.rs index a061b7f..04c4e23 100644 --- a/src/modules/blog/config.rs +++ b/src/modules/blog/config.rs @@ -15,4 +15,5 @@ pub struct BlogPost { pub last_modified: Option<String>, pub content: String, pub blog_id: String, + pub hidden: bool, } |