Files
nairobi/app/controllers/sdg_management/homepage_controller.rb
Javi Martín 2968275a1c Add empty SDG homepage configuration page
Here we'll eventually display links to edit the homepage and the cards
in it.
2021-01-14 17:35:38 +01:00

6 lines
162 B
Ruby

class SDGManagement::HomepageController < SDGManagement::BaseController
def show
@phases = SDG::Phase.accessible_by(current_ability).order(:kind)
end
end