ectomobile/config/routes.rb

13 lines
266 B
Ruby
Raw Permalink Normal View History

2021-07-19 13:53:53 +00:00
Rails.application.routes.draw do
2021-07-26 18:09:47 +00:00
devise_for :users
2021-07-26 18:09:47 +00:00
root 'application#index'
2022-06-11 16:57:02 +00:00
mount Blazer::Engine, at: '/blazer'
2021-10-19 19:04:17 +00:00
resources :readings, only: %i[create]
2022-06-11 16:57:02 +00:00
2022-06-08 14:49:54 +00:00
resources :sites, only: %i[show create update]
2022-06-11 16:56:54 +00:00
resources :users, only: %i[index create destroy]
2021-07-19 13:53:53 +00:00
end