|
125 | 125 | # admin_mission_control_jobs /admin/jobs MissionControl::Jobs::Engine |
126 | 126 | # admin_litestream /admin/litestream Litestream::Engine |
127 | 127 | # rails_admin /admin/data RailsAdmin::Engine |
| 128 | +# sitemaps GET /sitemap.xml(.:format) sitemaps#index |
| 129 | +# sitemap_pages GET /sitemap-pages.xml(.:format) sitemaps#pages |
128 | 130 | # GET /404(.:format) errors#not_found |
129 | 131 | # GET /500(.:format) errors#internal_server |
130 | 132 | # GET /422(.:format) errors#unprocessable |
131 | 133 | # pwa_serviceworker GET /serviceworker(.:format) rails/pwa#serviceworker {:format=>"js"} |
132 | 134 | # pwa_manifest GET /manifest(.:format) rails/pwa#manifest {:format=>"json"} |
133 | 135 | # rails_health_check GET /up(.:format) rails/health#show |
| 136 | +# deploy_hatchbox GET /deploy/hatchbox(.:format) redirect(301, meta/deployment/hatchbox) |
134 | 137 | # turbo_recede_historical_location GET /recede_historical_location(.:format) turbo/native/navigation#recede |
135 | 138 | # turbo_resume_historical_location GET /resume_historical_location(.:format) turbo/native/navigation#resume |
136 | 139 | # turbo_refresh_historical_location GET /refresh_historical_location(.:format) turbo/native/navigation#refresh |
|
323 | 326 |
|
324 | 327 | mount RailsAdmin::Engine => "/admin/data", :as => "rails_admin", :constraints => Routes::AdminAccessConstraint.new |
325 | 328 |
|
| 329 | + get "/sitemap" => "sitemaps#index", :as => :sitemaps, :constraints => {format: "xml"} |
| 330 | + get "/sitemap-pages" => "sitemaps#pages", :as => :sitemap_pages, :constraints => {format: "xml"} |
| 331 | + |
326 | 332 | get "/404", to: "errors#not_found" |
327 | 333 | get "/500", to: "errors#internal_server" |
328 | 334 | get "/422", to: "errors#unprocessable" |
|
0 commit comments