aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/model/comment.py
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2012-06-05 21:22:23 +0200
committerMarcin Kuzminski <marcin@python-works.com>2012-06-05 21:22:23 +0200
commita03152b7c31cc0fa132855cc1ee8cf67fa18c700 (patch)
tree3b35237f8161f4a68e8b5d3c2e912467c8353736 /rhodecode/model/comment.py
parent4dd76df2b29bdf1442bc0b5efe61149065626df6 (diff)
parentfb35be87fa4482508810b4ada88150eb0ae7d064 (diff)
merge with beta
--HG-- branch : codereview
Diffstat (limited to 'rhodecode/model/comment.py')
-rw-r--r--rhodecode/model/comment.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/rhodecode/model/comment.py b/rhodecode/model/comment.py
index b09970b7..b22b23ab 100644
--- a/rhodecode/model/comment.py
+++ b/rhodecode/model/comment.py
@@ -104,6 +104,7 @@ class ChangesetCommentsModel(BaseModel):
# add changeset author if it's in rhodecode system
recipients += [User.get_by_email(author_email)]
+ # create notification objects, and emails
NotificationModel().create(
created_by=user_id, subject=subj, body=body,
recipients=recipients, type_=Notification.TYPE_CHANGESET_COMMENT,