2024-10-27 21:42:45 +00:00
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
|
2024-07-11 18:42:31 +02:00
|
|
|
Rails.application.routes.draw do
|
2024-08-11 16:29:10 +02:00
|
|
|
resources :groups, only: :index
|
2024-11-11 08:08:49 +01:00
|
|
|
resources :guests, only: %i[index update] do
|
2024-10-27 14:03:13 +01:00
|
|
|
post :bulk_update, on: :collection
|
2024-07-25 10:47:49 +02:00
|
|
|
end
|
2024-11-11 07:43:42 +01:00
|
|
|
resources :expenses, only: %i[index update] do
|
2024-10-28 23:01:46 +01:00
|
|
|
get :summary, on: :collection
|
|
|
|
end
|
2024-11-11 07:43:42 +01:00
|
|
|
resources :tables_arrangements, only: %i[index show]
|
2024-07-11 18:42:31 +02:00
|
|
|
|
2024-08-01 18:27:41 +00:00
|
|
|
get 'up' => 'rails/health#show', as: :rails_health_check
|
2024-07-11 18:42:31 +02:00
|
|
|
end
|