···203203 // redirect them to the Login page.
204204 session.None, _ | session.Pending(_, _), _ if protected -> route.Login
205205 // If the User is *already* authenticated but navigating to
206206- // the Login page, redirect them to Home instead.
207207- session.Authenticated(_), route.Login -> route.Home
206206+ // the Login page, redirect them to Dashboard instead.
207207+ session.Authenticated(_), route.Login -> route.Dashboard
208208209209 _, _ -> route
210210 }