Manuel Bustillo 8a164c70e2 Revert "Install Rails' authentication generator"
This reverts commit aa0986986f1b6544e918d3fd6af13336547feacd.
2024-11-30 10:44:23 +01:00

17 lines
503 B
Ruby

# Copyright (C) 2024 Manuel Bustillo
Rails.application.routes.draw do
mount Rswag::Ui::Engine => '/api-docs'
mount Rswag::Api::Engine => '/api-docs'
resources :groups, only: :index
resources :guests, only: %i[index create update destroy] 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