Commit 8a6fb46d authored by Patricio Cano's avatar Patricio Cano

Corrected `case` indentation to conform with Rubocop

parent dd2ffafe
......@@ -15,32 +15,32 @@ module NotificationsHelper
def notification_list_item(notification_level)
case notification_level
when Notification::N_DISABLED
content_tag(:li) do
link_to '#', class: 'update-notification', data: { notification_level: Notification::N_DISABLED } do
icon('microphone-slash fw', text: 'Disabled')
end
when Notification::N_DISABLED
content_tag(:li) do
link_to '#', class: 'update-notification', data: { notification_level: Notification::N_DISABLED } do
icon('microphone-slash fw', text: 'Disabled')
end
when Notification::N_PARTICIPATING
content_tag(:li) do
link_to '#', class: 'update-notification', data: { notification_level: Notification::N_PARTICIPATING } do
icon('volume-up fw', text: 'Participating')
end
end
when Notification::N_PARTICIPATING
content_tag(:li) do
link_to '#', class: 'update-notification', data: { notification_level: Notification::N_PARTICIPATING } do
icon('volume-up fw', text: 'Participating')
end
when Notification::N_WATCH
content_tag(:li) do
link_to '#', class: 'update-notification', data: { notification_level: Notification::N_WATCH } do
icon('globe fw', text: 'Watch')
end
end
when Notification::N_WATCH
content_tag(:li) do
link_to '#', class: 'update-notification', data: { notification_level: Notification::N_WATCH } do
icon('globe fw', text: 'Watch')
end
when Notification::N_MENTION
content_tag(:li) do
link_to '#', class: 'update-notification', data: { notification_level: Notification::N_MENTION } do
icon('at fw', text: 'Mention')
end
end
when Notification::N_MENTION
content_tag(:li) do
link_to '#', class: 'update-notification', data: { notification_level: Notification::N_MENTION } do
icon('at fw', text: 'Mention')
end
else
# do nothing
end
else
# do nothing
end
end
end
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