mirror of
https://github.com/edcommonwealth/ecp.org.git
synced 2026-03-13 17:30:27 -07:00
11 lines
316 B
Ruby
11 lines
316 B
Ruby
Rails.application.routes.draw do
|
|
# Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html
|
|
resources :team, only: :index
|
|
resources :about, only: :index
|
|
resources :sqm, only: :index
|
|
resources :qpa, only: :index
|
|
resources :resource, only: :index
|
|
|
|
|
|
root 'home#index'
|
|
end
|