9 lines
174 B
Ruby
9 lines
174 B
Ruby
class ChildrenController < ApplicationController
|
|
def index
|
|
@children = Child.all.order(:last_name, :first_name)
|
|
respond_with @children
|
|
end
|
|
|
|
def lookup; end
|
|
end
|