sms-pager/app/controllers/children_controller.rb
2015-09-20 13:26:45 -05:00

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