summaryrefslogtreecommitdiffstats
path: root/models/issue.go
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-04-30 23:48:01 -0400
committerUnknown <joe2010xtmf@163.com>2014-04-30 23:48:01 -0400
commit49dc57e3368c6b6557520b671c9f1c3b4fe26db8 (patch)
tree8ca5d226ed52fc4600e16efeb6a027523beb2bf6 /models/issue.go
parentde46c06d2ef10c580015cabed67ae8eb17667605 (diff)
downloadgitea-49dc57e3368c6b6557520b671c9f1c3b4fe26db8.tar.gz
gitea-49dc57e3368c6b6557520b671c9f1c3b4fe26db8.zip
Add /api/v1/users/search
Diffstat (limited to 'models/issue.go')
-rw-r--r--models/issue.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/models/issue.go b/models/issue.go
index 26b8cecdd5..6a32312eed 100644
--- a/models/issue.go
+++ b/models/issue.go
@@ -70,12 +70,7 @@ func CreateIssue(userId, repoId, milestoneId, assigneeId int64, issueCount int,
return nil, err
}
- if err = sess.Commit(); err != nil {
- //sess.Rollback()
- return nil, err
- }
-
- return issue, nil
+ return issue, sess.Commit()
}
// GetIssueById returns issue object by given id.