Files
sx-fc/app/controllers/api/restaurant/seat_tables_controller.rb
2017-03-27 22:09:16 +06:30

6 lines
137 B
Ruby

class Api::Restaurant::SeatTablesController < ActionController::API
def index
render json: SeatTable.order("order_by")
end
end