Fixed notification level list item helper.

This commit is contained in:
Patricio Cano 2015-09-14 18:40:47 -05:00
parent 84508c40b7
commit ab56718feb

View file

@ -17,28 +17,24 @@ 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
end end