Commit ab56718f authored by Patricio Cano's avatar Patricio Cano

Fixed notification level list item helper.

parent 84508c40
...@@ -17,27 +17,23 @@ module NotificationsHelper ...@@ -17,27 +17,23 @@ module NotificationsHelper
case notification_level case notification_level
when Notification::N_DISABLED when Notification::N_DISABLED
content_tag(:li) do content_tag(:li) do
icon('microphone-slash') do icon('microphone-slash')
'Disabled' 'Disabled'
end
end end
when Notification::N_PARTICIPATING when Notification::N_PARTICIPATING
content_tag(:li) do content_tag(:li) do
icon('volume-up') do icon('volume-up')
'Participating' 'Participating'
end
end end
when Notification::N_WATCH when Notification::N_WATCH
content_tag(:li) do content_tag(:li) do
icon('globe') do icon('globe')
'Watch' 'Watch'
end
end end
when Notification::N_MENTION when Notification::N_MENTION
content_tag(:li) do content_tag(:li) do
icon('at') do icon('at')
'Mention' 'Mention'
end
end end
else else
# do nothing # do nothing
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment