Files
grecia/app/controllers/sdg_management/goals_controller.rb
taitus fb5965fe63 Add cancancan to SDG content
Only allow access to the SDG content section to administrators and sdg managers
2020-12-16 11:43:17 +01:00

8 lines
174 B
Ruby

class SDGManagement::GoalsController < SDGManagement::BaseController
load_and_authorize_resource class: "SDG::Goal"
def index
@goals = @goals.order(:code)
end
end