Add empty SDG homepage configuration page

Here we'll eventually display links to edit the homepage and the cards
in it.
This commit is contained in:
Javi Martín
2021-01-07 15:05:44 +01:00
parent 6db128f7ee
commit 2968275a1c
11 changed files with 79 additions and 5 deletions

View File

@@ -0,0 +1,5 @@
class SDGManagement::HomepageController < SDGManagement::BaseController
def show
@phases = SDG::Phase.accessible_by(current_ability).order(:kind)
end
end