summaryrefslogtreecommitdiff
path: root/app/controllers/commit_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/commit_controller.rb')
-rw-r--r--app/controllers/commit_controller.rb12
1 files changed, 8 insertions, 4 deletions
diff --git a/app/controllers/commit_controller.rb b/app/controllers/commit_controller.rb
index ebc27772f9a..4fbfe205d3f 100644
--- a/app/controllers/commit_controller.rb
+++ b/app/controllers/commit_controller.rb
@@ -13,10 +13,14 @@ class CommitController < ProjectResourceController
@commit = result[:commit]
git_not_found! unless @commit
- @suppress_diff = result[:suppress_diff]
- @note = result[:note]
- @line_notes = result[:line_notes]
- @notes_count = result[:notes_count]
+ @suppress_diff = result[:suppress_diff]
+
+ @note = result[:note]
+ @line_notes = result[:line_notes]
+ @notes_count = result[:notes_count]
+ @target_type = :commit
+ @target_id = @commit.id
+
@comments_allowed = @reply_allowed = true
@comments_target = { noteable_type: 'Commit',
noteable_id: @commit.id }