From 42786dce742bdac935b13eb6cb395928de8a27a5 Mon Sep 17 00:00:00 2001 From: akastijn Date: Thu, 13 Nov 2025 20:59:28 +0100 Subject: [PATCH] Add route to redirect `/worlddl` path to external MediaFire link --- frontend/src/app/app.routes.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/app/app.routes.ts b/frontend/src/app/app.routes.ts index 9c06d32..937f175 100644 --- a/frontend/src/app/app.routes.ts +++ b/frontend/src/app/app.routes.ts @@ -2,6 +2,11 @@ import {Routes} from '@angular/router'; import {AuthGuard} from './guards/auth.guard'; export const routes: Routes = [ + { + path: 'worlddl', + redirectTo: 'https://www.mediafire.com/folder/zblzjurjleq6i/Altitude_servers_1.17.1', + pathMatch: 'full' + }, { path: 'login/:code', loadComponent: () => import('./pages/home/home.component').then(m => m.HomeComponent),