2022-03-25 20:01:50 +02:00
|
|
|
Rails.application.routes.draw do
|
|
|
|
|
2022-11-24 15:44:31 +02:00
|
|
|
namespace :cms do
|
2022-11-26 11:15:56 +02:00
|
|
|
resources :pages do
|
|
|
|
resources :sections
|
|
|
|
end
|
2022-11-25 14:46:49 +02:00
|
|
|
resources :images
|
2022-11-24 15:44:31 +02:00
|
|
|
end
|
|
|
|
|
2022-11-22 16:42:20 +02:00
|
|
|
get 'pages/:id' , to: 'high_voltage/pages#show', id: 'index'
|
|
|
|
|
|
|
|
# root to: 'high_voltage/pages#show', id: 'index'
|
|
|
|
root to: 'cms#view' , id: 'index'
|
|
|
|
get "/:id" , to: 'cms#view'
|
2022-03-25 20:01:50 +02:00
|
|
|
end
|