15 lines
405 B
Ruby
15 lines
405 B
Ruby
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
Rails.application.routes.draw do
|
|
resources :groups, only: :index
|
|
resources :guests, only: %i[index update] do
|
|
post :bulk_update, on: :collection
|
|
end
|
|
resources :expenses, only: %i[index update] do
|
|
get :summary, on: :collection
|
|
end
|
|
resources :tables_arrangements, only: %i[index show]
|
|
|
|
get 'up' => 'rails/health#show', as: :rails_health_check
|
|
end
|