demarches/config/routes.rb

8 lines
167 B
Ruby
Raw Normal View History

2024-06-08 17:56:04 +00:00
Rails.application.routes.draw do
2024-06-08 19:14:53 +00:00
root "application#home"
get 'apropos', to: 'application#apropos'
get 'legal', to: 'application#legal'
2024-06-08 17:56:04 +00:00
2024-06-08 19:14:53 +00:00
resources :letters
2024-06-08 17:56:04 +00:00
end