Implement the new fields for comment.

This commit is contained in:
Tom Alexander 2023-12-08 16:09:47 -05:00
parent 9bcba4020d
commit 4a8607726c
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 2 additions and 2 deletions

View File

@ -237,11 +237,11 @@ impl<'s> StandardProperties<'s> for Comment<'s> {
} }
fn get_contents<'b>(&'b self) -> Option<&'s str> { fn get_contents<'b>(&'b self) -> Option<&'s str> {
todo!() None
} }
fn get_post_blank(&self) -> PostBlank { fn get_post_blank(&self) -> PostBlank {
todo!() 0
} }
} }