From 2c19bd3c023eb03b6885e5f2eb11a99381c60cf2 Mon Sep 17 00:00:00 2001 From: Nandinii Yeleswarapu Date: Wed, 2 Oct 2024 15:20:34 -0500 Subject: [PATCH] add back deleted health check route --- config/routes.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/routes.rb b/config/routes.rb index 2f892a45..8391605a 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -2,6 +2,8 @@ resources :games root :to => redirect('/games') + get "up" => "rails/health#show", as: :rails_health_check + ## stub paths to demo game landing page get '/spellingbee/:id', to: 'games#demo_game', as: 'spellingbee' get '/wordle/:id', to: 'games#demo_game', as: 'wordle'