2024-10-27 21:42:45 +00:00
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
|
2024-08-01 18:27:41 +00:00
|
|
|
class TablesArrangementsController < ApplicationController
|
|
|
|
def index
|
2024-11-01 19:07:12 +01:00
|
|
|
render json: TablesArrangement.all.order(discomfort: :asc).limit(10)
|
2024-08-01 18:27:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2024-11-01 19:07:12 +01:00
|
|
|
render json: TablesArrangement.find(params[:id])
|
2024-08-01 18:27:41 +00:00
|
|
|
end
|
|
|
|
end
|