demarches-normaliennes/app/controllers/demo_controller.rb

8 lines
150 B
Ruby
Raw Normal View History

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