Extract methods to generate SDG management menu

This commit is contained in:
Javi Martín
2020-12-08 13:16:33 +01:00
parent dae6492c03
commit 5590ecaaa6
2 changed files with 9 additions and 9 deletions

View File

@@ -3,6 +3,14 @@ class SDGManagement::MenuComponent < ApplicationComponent
private
def links
[goals_link]
end
def goals_link
[t("sdg_management.menu.sdg_content"), sdg_management_goals_path, sdg?, class: "goals-link"]
end
def sdg?
%w[goals targets local_targets].include?(controller_name)
end