aboutsummaryrefslogtreecommitdiffstats
path: root/defmodule.lisp
diff options
context:
space:
mode:
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.")