debt-manager/config/routes.rb

13 lines
324 B
Ruby
Raw Normal View History

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