提交 a9b04c45 编写于 作者: D Douwe Maan

Fix Snippet#participants.

上级 c644dd01
......@@ -138,6 +138,7 @@ class Commit
users = []
users << author
users << committer
mentions = []
mentions << self.mentioned_users(current_user, project)
......
......@@ -122,6 +122,7 @@ module Issuable
users = []
users << author
users << assignee if is_assigned?
mentions = []
mentions << self.mentioned_users(current_user)
......
......@@ -91,6 +91,8 @@ class Snippet < ActiveRecord::Base
users = []
users << author
mentions = []
notes.each do |note|
users << note.author
mentions << note.mentioned_users(current_user)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册