12 lines
263 B
Ruby
12 lines
263 B
Ruby
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
class TablesArrangementsController < ApplicationController
|
|
def index
|
|
render json: TablesArrangement.all.order(discomfort: :asc).limit(10)
|
|
end
|
|
|
|
def show
|
|
render json: TablesArrangement.find(params[:id])
|
|
end
|
|
end
|