TODO note

This commit is contained in:
Niko Abeler 2022-12-05 21:23:45 +01:00
parent d783db98a2
commit ff50adac78
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@ func (user User) CreateNewPost(meta PostMeta, content string) (Post, error) {
initial_content := ""
initial_content += "---\n"
// write meta
meta_bytes, err := yaml.Marshal(meta)
meta_bytes, err := yaml.Marshal(meta) // TODO: this should be down by the Post
if err != nil {
return &GenericPost{}, err
}