demarches-normaliennes/app/controllers/demo_controller.rb
2015-11-30 10:59:56 +01:00

7 lines
145 B
Ruby

class DemoController < ApplicationController
def index
@procedures = Procedure.all.where(archived: false).order('libelle ASC')
end
end