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
|
|
|
|
@tables_arrangements = TablesArrangement.all.order(discomfort: :asc).limit(10)
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
@tables_arrangement = TablesArrangement.find(params[:id])
|
2024-08-01 23:11:54 +02:00
|
|
|
@seats = @tables_arrangement.seats
|
|
|
|
.includes(guest: %i[affinity_groups unbreakable_bonds])
|
|
|
|
.group_by(&:table_number)
|
2024-08-01 18:27:41 +00:00
|
|
|
end
|
|
|
|
end
|