Manuel Bustillo
5930350283
All checks were successful
Run unit tests / unit_tests (pull_request) Successful in 3m27s
13 lines
429 B
Ruby
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
|