Add empty SDG index

This commit is contained in:
Javi Martín
2020-12-19 14:11:37 +01:00
parent 46e9d2e5a9
commit de4be15a8d
20 changed files with 72 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
class SDG::GoalsController < ApplicationController
include FeatureFlags
feature_flag :sdg
load_and_authorize_resource
def index
@goals = @goals.order(:code)
end
end