Files
nairobi/app/components/sdg_management/menu_component.rb
Javi Martín 55d2cfe5b1 Use link list helper in admin menus
For now we're not including lists with nested lists.
2020-12-07 15:28:56 +01:00

10 lines
185 B
Ruby

class SDGManagement::MenuComponent < ApplicationComponent
include LinkListHelper
private
def sdg?
controller_name == "goals" || controller_name == "targets"
end
end