Add comments to issue.

This commit is contained in:
shimamoto
2013-06-25 13:18:53 +09:00
parent 34b71c10cb
commit 1a4510201f
3 changed files with 26 additions and 4 deletions

View File

@@ -18,6 +18,13 @@ trait IssuesService {
} firstOption
else None
def getComment(owner: String, repository: String, issueId: Int) =
Query(IssueComments) filter { t =>
(t.userName is owner.bind) &&
(t.repositoryName is repository.bind) &&
(t.issueId is issueId.bind)
} list
def searchIssue(owner: String, repository: String,
// TODO It is better to have a DTO
closed: Boolean) =