From 901fc7b5dcc0acf08b3e85d2160034ee47daedb2 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 5 Jul 2013 00:37:44 +0200 Subject: Pass story id as POST parameter For some reason using a route template "stories/:id/tasks/new" works locally, but not on my server, so do without. --- scrumli.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'scrumli.lisp') diff --git a/scrumli.lisp b/scrumli.lisp index 24c4469..26f99c5 100644 --- a/scrumli.lisp +++ b/scrumli.lisp @@ -80,9 +80,10 @@ 200) 403)) -(define-route tasks-new ("stories/:id/tasks/new" :method :post) +(define-route tasks-new ("stories/tasks/new" :method :post) (if (logged-in-p) - (let ((description (hunchentoot:post-parameter "description"))) + (let ((id (hunchentoot:post-parameter "storyId")) + (description (hunchentoot:post-parameter "description"))) (post-task id description (hunchentoot:session-value :username)) 200) 403)) -- cgit v1.2.3-54-g00ecf