From af597028bd8d6c7cdd235b00901683fbcb4c52d6 Mon Sep 17 00:00:00 2001 From: rebuilt Date: Tue, 14 Mar 2023 13:02:52 -0700 Subject: [PATCH] Add mission page to routes --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index 806214a..a1e74b0 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -10,10 +10,10 @@ Rails.application.routes.draw do get 'resource/download_pdf', to: 'resource#download_pdf' resources :research, only: :index get 'research/download_pdf', to: 'research#download_pdf' - resources :work_with_ecp, only: :index resources :construction, only: :index resources :district_leader, only: :index resources :in_the_news, only: :index + resources :mission, only: :index get 'in_the_news/download_pdf', to: 'in_the_news#download_pdf' resources :home, only: %i[index create]