evodata/config/routes.rb

10 lines
273 B
Ruby
Raw Normal View History

2021-12-18 15:52:01 +01:00
Rails.application.routes.draw do
devise_for :users, :path_prefix => 'my'
resources :users
2021-12-18 16:14:50 +01:00
resources :checks
2021-12-18 15:52:01 +01:00
# Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html
# Defines the root path route ("/")
root "checks#index"
2021-12-18 15:52:01 +01:00
end