Manuel Bustillo
8c4e6a0109
All checks were successful
Run unit tests / unit_tests (push) Successful in 3m36s
Reviewed-on: #8 Co-authored-by: Manuel Bustillo <bustikiller@bustikiller.com> Co-committed-by: Manuel Bustillo <bustikiller@bustikiller.com>
11 lines
325 B
Ruby
11 lines
325 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).group_by(&:table_number)
|
|
end
|
|
end
|