wedding-planner/app/controllers/tables_arrangements_controller.rb
Manuel Bustillo 5930350283
All checks were successful
Run unit tests / unit_tests (pull_request) Successful in 3m27s
Display affinity groups in arrangements show action
2024-08-01 23:11:54 +02:00

13 lines
429 B
Ruby

class TablesArrangementsController < ApplicationController
def index
@tables_arrangements = TablesArrangement.all.order(discomfort: :asc).limit(10)
end
def show
@tables_arrangement = TablesArrangement.find(params[:id])
@seats = @tables_arrangement.seats
.includes(guest: %i[affinity_groups unbreakable_bonds])
.group_by(&:table_number)
end
end