summaryrefslogtreecommitdiff
path: root/app/helpers/system_note_helper.rb
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-04-06 12:25:22 -0500
committerJacob Schatz <jschatz1@gmail.com>2017-04-06 19:22:33 -0400
commit6f7deb482a4423f6da7cdd765e6b138aaa38cbd7 (patch)
tree69c14a02ee201c38a64824d5c925072e50c685ee /app/helpers/system_note_helper.rb
parent32e4a0f3513c846da376f70706d8d0ea60ba8b6e (diff)
downloadgitlab-ce-6f7deb482a4423f6da7cdd765e6b138aaa38cbd7.tar.gz
Add remaining system note icons
Diffstat (limited to 'app/helpers/system_note_helper.rb')
-rw-r--r--app/helpers/system_note_helper.rb22
1 files changed, 19 insertions, 3 deletions
diff --git a/app/helpers/system_note_helper.rb b/app/helpers/system_note_helper.rb
index e4dcf5343bc..b45b8b1de38 100644
--- a/app/helpers/system_note_helper.rb
+++ b/app/helpers/system_note_helper.rb
@@ -10,17 +10,33 @@ module SystemNoteHelper
when 'merged'
'icon_merged'
when 'opened'
- 'icon_opened'
+ 'icon_status_open'
when 'closed'
- 'icon_closed'
+ 'icon_status_closed'
when 'time_tracking'
'icon_timer'
when 'assignee'
'icon_user'
when 'title'
'icon_pencil'
+ when 'task'
+ 'icon_check_square_o'
+ when 'label'
+ 'icon_tags'
+ when 'cross_reference'
+ 'icon_random'
+ when 'branch'
+ 'icon_code_fork'
+ when 'confidential'
+ 'icon_eye_slash'
+ when 'visible'
+ 'icon_eye'
+ when 'milestone'
+ 'icon_clock_o'
+ when 'moved'
+ 'icon_arrow-circle-o-right'
else
- 'icon_status_canceled'
+ 'icon_diamond'
end
custom_icon(icon_name)