From 21bdc21486ecb95aef93c4ad0e940258590da987 Mon Sep 17 00:00:00 2001 From: Dan Milne Date: Fri, 24 Oct 2025 11:08:28 +1100 Subject: [PATCH] Switch menu order --- app/views/shared/_sidebar.html.erb | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/app/views/shared/_sidebar.html.erb b/app/views/shared/_sidebar.html.erb index 35f2fa4..7facb76 100644 --- a/app/views/shared/_sidebar.html.erb +++ b/app/views/shared/_sidebar.html.erb @@ -57,16 +57,6 @@ <% end %> - -
  • - <%= link_to admin_groups_path, class: "group flex gap-x-3 rounded-md p-2 text-sm font-semibold leading-6 #{ current_path.start_with?('/admin/groups') ? 'bg-gray-50 text-blue-600' : 'text-gray-700 hover:text-blue-600 hover:bg-gray-50' }" do %> - - - - Groups - <% end %> -
  • -
  • <%= link_to admin_forward_auth_rules_path, class: "group flex gap-x-3 rounded-md p-2 text-sm font-semibold leading-6 #{ current_path.start_with?('/admin/forward_auth_rules') ? 'bg-gray-50 text-blue-600' : 'text-gray-700 hover:text-blue-600 hover:bg-gray-50' }" do %> @@ -76,6 +66,16 @@ Forward Auth Rules <% end %>
  • + + +
  • + <%= link_to admin_groups_path, class: "group flex gap-x-3 rounded-md p-2 text-sm font-semibold leading-6 #{ current_path.start_with?('/admin/groups') ? 'bg-gray-50 text-blue-600' : 'text-gray-700 hover:text-blue-600 hover:bg-gray-50' }" do %> + + + + Groups + <% end %> +
  • <% end %>