6 lines
137 B
Ruby
6 lines
137 B
Ruby
class Api::Restaurant::SeatTablesController < ActionController::API
|
|
def index
|
|
render json: SeatTable.order("order_by")
|
|
end
|
|
end
|