From 10f717eaa5b527ad97309c888a81f6e1024f80c1 Mon Sep 17 00:00:00 2001 From: Scott Merrill Date: Thu, 24 May 2018 10:37:11 -0400 Subject: [PATCH] update sample config --- config.php.sample | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config.php.sample b/config.php.sample index 2ac4480..022cacb 100644 --- a/config.php.sample +++ b/config.php.sample @@ -25,8 +25,12 @@ $config = array( # different types of content may have different paths. # by default, entries are in the root of the /content/ directory, so # are not included here. Notes are in the /note/ directory. + # Reposts and replies are **usually** notes, so stick them in /note/, too. 'content_paths' => array( - 'note' => 'note/' . date('Y/m/d/'), + 'note' => 'note/' . date('Y/m/d/'), + 'in-reply-to' => 'note/' . date('Y/m/d/'), + 'repost-of' => 'note/' . date('Y/m/d/'), + 'bookmark-of' => 'link/', ), # whether or not to copy uploaded files to the source /static/ directory.