Implement the feature "Task List"

This commit is contained in:
bati11
2014-04-06 00:45:19 +09:00
parent ce79eaada8
commit 843722f82e
11 changed files with 117 additions and 25 deletions

View File

@@ -186,7 +186,7 @@ trait IssuesControllerBase extends ControllerBase {
org.json4s.jackson.Serialization.write(
Map("title" -> x.title,
"content" -> view.Markdown.toHtml(x.content getOrElse "No description given.",
repository, false, true)
repository, false, true, true)
))
}
} else Unauthorized
@@ -203,7 +203,7 @@ trait IssuesControllerBase extends ControllerBase {
contentType = formats("json")
org.json4s.jackson.Serialization.write(
Map("content" -> view.Markdown.toHtml(x.content,
repository, false, true)
repository, false, true, true)
))
}
} else Unauthorized