Redirect old dashboard routes to new routes

This commit is contained in:
jude
2024-06-04 16:40:39 +01:00
parent 9d452ed8cb
commit 65b8ba3b47
4 changed files with 330 additions and 297 deletions

View File

@ -177,6 +177,8 @@ pub async fn initialize(
.mount(
"/dashboard",
routes![
routes::dashboard::reminders_redirect,
routes::dashboard::todos_redirect,
routes::dashboard::dashboard,
routes::dashboard::dashboard_home,
routes::dashboard::api::delete_reminder,

View File

@ -697,6 +697,18 @@ pub enum DashboardPage {
NotConfigured(Template),
}
// Legacy route to maintain compatibility with old dashboard routing
#[get("/?<id>")]
pub async fn reminders_redirect(id: &str) -> Redirect {
Redirect::to(format!("/dashboard/{}/reminders", id))
}
// Legacy route to maintain compatibility with old dashboard routing
#[get("/todo?<id>")]
pub async fn todos_redirect(id: &str) -> Redirect {
Redirect::to(format!("/dashboard/{}/todos", id))
}
#[get("/")]
pub async fn dashboard_home(cookies: &CookieJar<'_>) -> DashboardPage {
if cookies.get_private("userid").is_some() {