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>
10 lines
238 B
Ruby
10 lines
238 B
Ruby
Rails.application.routes.draw do
|
|
resources :guests do
|
|
post :import, on: :collection
|
|
end
|
|
resources :expenses
|
|
resources :tables_arrangements, only: [:index, :show]
|
|
|
|
get 'up' => 'rails/health#show', as: :rails_health_check
|
|
end
|