demarches-normaliennes/app/controllers/demo_controller.rb

8 lines
145 B
Ruby
Raw Normal View History

2015-11-17 18:30:28 +01:00
class DemoController < ApplicationController
def index
2015-11-30 10:59:56 +01:00
@procedures = Procedure.all.where(archived: false).order('libelle ASC')
2015-11-17 18:30:28 +01:00
end
end