aboutsummaryrefslogtreecommitdiffstats
path: root/defmodule.lisp
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-07-04 21:51:31 +0200
committerGravatar Tom Willemse2013-07-04 21:51:31 +0200
commitc65cde9e8e55b39ff468e4b5ce76d51fb0468d7e (patch)
tree5f9fe787c0b381cf9feef1dace2bf269f74e0e84 /defmodule.lisp
parentb8fad180475a847dab845a2cc7bcf56ab274ee46 (diff)
downloadscrumli-c65cde9e8e55b39ff468e4b5ce76d51fb0468d7e.tar.gz
scrumli-c65cde9e8e55b39ff468e4b5ce76d51fb0468d7e.zip
Add tasks to stories
Diffstat (limited to 'defmodule.lisp')
-rw-r--r--defmodule.lisp6
1 files changed, 6 insertions, 0 deletions
diff --git a/defmodule.lisp b/defmodule.lisp
index d3756c9..2cc9148 100644
--- a/defmodule.lisp
+++ b/defmodule.lisp
@@ -12,9 +12,15 @@
(define-method get-story (id)
"Get a story from the datastore.")
+ (define-method get-tasks-for-story (id)
+ "Get the tasks associated with a story.")
+
(define-method post-story (role necessity title content reporter)
"Post a new story.")
+ (define-method post-task (story-id description reporter)
+ "Post a new task for a story.")
+
(define-method story-get-state (id)
"Get the state of a story.")