aboutsummaryrefslogtreecommitdiff
path: root/src/modules/blog/config.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-02-14 21:28:21 -0800
committerFuwn <[email protected]>2026-02-14 21:28:21 -0800
commit7493510908dfc9c348c40a90e0cde96f0434b3af (patch)
tree84f792e8b1f69dbe70f0a15012fd5f784ee9791c /src/modules/blog/config.rs
parentfix(xml): Implement full XML 1.0 escaping and RSS-safe CDATA handling (diff)
downloadlocus-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.rs1
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,
}