From 6a852e66e378102f0a21a0b1f3b29e9e44784440 Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Thu, 26 Mar 2026 17:58:02 -0700 Subject: [PATCH] Add root route pointing to rankings page --- config/routes.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/routes.rb b/config/routes.rb index dc2d739..4f8f0ea 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -3,6 +3,8 @@ module EuchreCamp class Routes < Hanami::Routes # Add your routes here. See https://guides.hanamirb.org/routing/overview/ for details. + root to: "players.rankings" + get "/players/:id", to: "players.show" get "/rankings", to: "players.rankings"