aboutsummaryrefslogtreecommitdiffstats
path: root/models/issue.go
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-03-25 21:37:18 -0400
committerUnknown <joe2010xtmf@163.com>2014-03-25 21:37:18 -0400
commitc1a3d4fefbbbf332cd1cedda66e93bf40cc9713d (patch)
treeb3eb7a817533770f172744b4e5dbb0360f6657bc /models/issue.go
parentbc5316b82ed20a4392cac6a57b86efcd467cef09 (diff)
downloadgitea-c1a3d4fefbbbf332cd1cedda66e93bf40cc9713d.tar.gz
gitea-c1a3d4fefbbbf332cd1cedda66e93bf40cc9713d.zip
Add mail notify for creating issue
Diffstat (limited to 'models/issue.go')
-rw-r--r--models/issue.go1
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
}