From a392a766603b51336d4c90bd7f2ba0bd81fde3a7 Mon Sep 17 00:00:00 2001 From: nachtjasmin Date: Wed, 27 Dec 2023 21:04:00 +0100 Subject: [PATCH] Add Hometown menu entry to admin settings --- config/routes/admin.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/config/routes/admin.rb b/config/routes/admin.rb index 207cb0580..d53144481 100644 --- a/config/routes/admin.rb +++ b/config/routes/admin.rb @@ -50,6 +50,7 @@ namespace :admin do resource :about, only: [:show, :update], controller: 'about' resource :appearance, only: [:show, :update], controller: 'appearance' resource :discovery, only: [:show, :update], controller: 'discovery' + resource :hometown, only: [:show, :update], controller: 'hometown' end resources :site_uploads, only: [:destroy]