debt-manager/config/routes.rb
Louis Vallat a1d2fb9444
feat: added base bubble CRUD
Signed-off-by: Louis Vallat <louis@louis-vallat.xyz>
2023-11-01 20:54:06 +01:00

13 lines
324 B
Ruby

Rails.application.routes.draw do
root "application#index"
devise_for :users
# Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html
# Defines the root path route ("/")
get :home, controller: :profile
resources :bubbles, except: [:show] do
get :confirm_destroy
end
end