13 lines
324 B
Ruby
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
|