7 lines
145 B
Ruby
7 lines
145 B
Ruby
class DemoController < ApplicationController
|
|
|
|
def index
|
|
@procedures = Procedure.all.where(archived: false).order('libelle ASC')
|
|
end
|
|
|
|
end
|