diff options
Diffstat (limited to 'conf/clog.conf')
-rw-r--r-- | conf/clog.conf | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/conf/clog.conf b/conf/clog.conf index 9000d65..f26429b 100644 --- a/conf/clog.conf +++ b/conf/clog.conf @@ -43,7 +43,12 @@ domain * { } route ^/posts/[a-z0-9\-]+$ { - handler delete_posts_resource + handler put_posts + methods put + } + + route ^/posts/[a-z0-9\-]+$ { + handler delete_posts methods delete } |