summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-03-23 16:17:10 +0100
committerDouwe Maan <douwe@gitlab.com>2015-03-23 16:17:10 +0100
commita30645c68f31d848ebad8c7ca395b55b9449db6d (patch)
tree70a00c8f0cb62e4f1cc34c4238afe9fa224a7462
parentbc4e25189805879490555ef2782193470f4fe295 (diff)
downloadgitlab-ce-a30645c68f31d848ebad8c7ca395b55b9449db6d.tar.gz
Don't show commit comment button when user is not signed in.
-rw-r--r--CHANGELOG1
-rw-r--r--app/views/projects/diffs/_text_file.html.haml2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index c8b2dd2ba77..09ef479be57 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -27,6 +27,7 @@ v 7.10.0 (unreleased)
- Restrict permissions on backup files
- Improve oauth accounts UI in profile page
- Add ability to unlink connected accounts
+ - Don't show commit comment button when user is not signed in.
v 7.9.0
- Add HipChat integration documentation (Stan Hu)
diff --git a/app/views/projects/diffs/_text_file.html.haml b/app/views/projects/diffs/_text_file.html.haml
index b1c987563f1..e691db9c08e 100644
--- a/app/views/projects/diffs/_text_file.html.haml
+++ b/app/views/projects/diffs/_text_file.html.haml
@@ -16,7 +16,7 @@
- else
%td.old_line
= link_to raw(type == "new" ? "&nbsp;" : line_old), "##{line_code}", id: line_code
- - if @comments_allowed
+ - if @comments_allowed && can?(current_user, :write_note, @project)
= link_to_new_diff_note(line_code)
%td.new_line{data: {linenumber: line.new_pos}}
= link_to raw(type == "old" ? "&nbsp;" : line.new_pos) , "##{line_code}", id: line_code