blob: f7ea0de0cc93c679848284b448ba84f94a708754 (
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
|
# frozen_string_literal: true
module Sidebars
module UserSettings
module Menus
class NotificationsMenu < ::Sidebars::Menu
include ::Sidebars::Concerns::RenderIfLoggedIn
override :link
def link
profile_notifications_path
end
override :title
def title
_('Notifications')
end
override :sprite_icon
def sprite_icon
'notifications'
end
override :active_routes
def active_routes
{ controller: :notifications }
end
end
end
end
end
|