aboutsummaryrefslogtreecommitdiffstats
path: root/scrumli.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'scrumli.lisp')
-rw-r--r--scrumli.lisp5
1 files changed, 3 insertions, 2 deletions
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))