Files
nairobi/app/controllers/sdg_management/targets_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::TargetsController < SDGManagement::BaseController
load_and_authorize_resource class: "SDG::Target"
def index
@targets = @targets.sort
end
end