diff options
author | Unknown <joe2010xtmf@163.com> | 2014-03-25 21:37:18 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-03-25 21:37:18 -0400 |
commit | c1a3d4fefbbbf332cd1cedda66e93bf40cc9713d (patch) | |
tree | b3eb7a817533770f172744b4e5dbb0360f6657bc /models/issue.go | |
parent | bc5316b82ed20a4392cac6a57b86efcd467cef09 (diff) | |
download | gitea-c1a3d4fefbbbf332cd1cedda66e93bf40cc9713d.tar.gz gitea-c1a3d4fefbbbf332cd1cedda66e93bf40cc9713d.zip |
Add mail notify for creating issue
Diffstat (limited to 'models/issue.go')
-rw-r--r-- | models/issue.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/models/issue.go b/models/issue.go index 2bdd083d90..2de6568589 100644 --- a/models/issue.go +++ b/models/issue.go @@ -59,7 +59,6 @@ func CreateIssue(userId, repoId, milestoneId, assigneeId int64, name, labels, co Content: content, } _, err = orm.Insert(issue) - // TODO: newIssueAction return issue, err } |