Skip to content
Snippets Groups Projects
Commit b658489f authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Fix bugs when discussion visible in wrong project

Because notes scope was not limited by project in
MergeRequest#mr_and_commit_notes it causes comments from project A
appears in discussions for MR in project B.
parent dc825ae3
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -222,7 +222,11 @@ class MergeRequest < ActiveRecord::Base
 
def mr_and_commit_notes
commit_ids = commits.map(&:id)
Note.where("(noteable_type = 'MergeRequest' AND noteable_id = :mr_id) OR (noteable_type = 'Commit' AND commit_id IN (:commit_ids))", mr_id: id, commit_ids: commit_ids)
project.notes.where(
"(noteable_type = 'MergeRequest' AND noteable_id = :mr_id) OR (noteable_type = 'Commit' AND commit_id IN (:commit_ids))",
mr_id: id,
commit_ids: commit_ids
)
end
 
# Returns the raw diff for this merge request
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment