936353edfd
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
13 lines
424 B
Ruby
13 lines
424 B
Ruby
module NotificationsHelper
|
|
def notification_icon(notification)
|
|
if notification.disabled?
|
|
content_tag :i, nil, class: 'icon-volume-off cred'
|
|
elsif notification.participating?
|
|
content_tag :i, nil, class: 'icon-volume-down cblue'
|
|
elsif notification.watch?
|
|
content_tag :i, nil, class: 'icon-volume-up cgreen'
|
|
else
|
|
content_tag :i, nil, class: 'icon-circle-blank cblue'
|
|
end
|
|
end
|
|
end
|