From a28484d0e090a5d11a753fe056ce179a389b180b Mon Sep 17 00:00:00 2001
From: insects <mail@liv.nrw>
Date: Tue, 11 Mar 2025 20:26:29 +0100
Subject: [PATCH] fix: fix health check

---
 config/routes.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/routes.rb b/config/routes.rb
index 664e131..e37e4ce 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -1,5 +1,6 @@
 Rails.application.routes.draw do
   root "page#index"
+  get "/up" => "rails/health#show", as: :rails_health_check
 
   post "/new", to: "instance#create", as: :new_instance
   post "/pop", to: "instance#pop", as: :pop_in_instance
@@ -10,5 +11,4 @@ Rails.application.routes.draw do
   post "/fairy/despawn", to: "fairy#despawn", as: :despawn_fairy
   get "/:public_id", to: "instance#show", as: :show_instance
 
-  get "up" => "rails/health#show", as: :rails_health_check
 end