diff options
author | Michael McVady <femtonaut@gmail.com> | 2024-03-24 22:04:24 -0500 |
---|---|---|
committer | Michael McVady <femtonaut@gmail.com> | 2024-03-24 22:04:24 -0500 |
commit | e1846d4c21165e7d2137a11152e4a8f171c90324 (patch) | |
tree | 98d6e1b32d3f1c8600d87a330b56cbd1bed18047 /conf/clog.conf | |
parent | 15b65f02c7b9bfd691835cf0392e3b958626ed89 (diff) |
Update edit route
Diffstat (limited to 'conf/clog.conf')
-rw-r--r-- | conf/clog.conf | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/conf/clog.conf b/conf/clog.conf index c469376..8d8e778 100644 --- a/conf/clog.conf +++ b/conf/clog.conf @@ -58,14 +58,6 @@ domain * { methods get } - route ^/entries/[a-z0-9\-]+$ { - handler update_entry - methods post - - validate post title v_text - validate post body v_text - } - route ^/entries/[a-z0-9\-]+/delete$ { handler delete_entry methods get @@ -75,7 +67,14 @@ domain * { handler edit_entry methods get } + + route ^/entries/[a-z0-9\-]+/edit$ { + handler update_entry + methods post + validate post title v_text + validate post body v_text + } route ^/.*$ { handler redirect |