Files
2015-03-24 18:40:55 +01:00

9 lines
226 B
Ruby

class Waiter::SectionsController < Waiter::ApplicationController
def index
sections = current_supplier.sections.include_relation(:tables)
render json: sections, each_serializer: Waiter::SectionSerializer
end
end