Welcome to mirror list, hosted at ThFree Co, Russian Federation.

system_note_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 954d442737813f5b787aa14c98e3202f1e03bab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
module SystemNoteHelper
  def icon_for_system_note(note)

    icon_name =
      case note.system_note_metadata.action
      when 'commit'
        'icon_commit'
      when 'merge'
        'icon_merge'
      when 'merged'
        'icon_merged'
      when 'opened'
        'icon_status_open'
      when '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 'discussion'
        'icon_comment_o'
      when 'moved'
        'icon_arrow-circle-o-right'
      else
        'icon_diamond'
      end

    custom_icon(icon_name)
  end
end