Implemented the label edit process.

This commit is contained in:
shimamoto
2013-07-03 00:22:50 +09:00
parent f1ea71fbba
commit 00f921d330
3 changed files with 32 additions and 19 deletions

View File

@@ -25,7 +25,7 @@ trait IssuesService {
Query(IssueComments) filter (_.byPrimaryKey(commentId.toInt)) firstOption
else None
def getIssueLabel(owner: String, repository: String, issueId: Int) =
def getIssueLabels(owner: String, repository: String, issueId: Int) =
IssueLabels
.innerJoin(Labels).on { (t1, t2) =>
t1.byLabel(t2.userName, t2.repositoryName, t2.labelId)