diff options
Diffstat (limited to 'client/src/app/app-routing.module.ts')
-rw-r--r-- | client/src/app/app-routing.module.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/client/src/app/app-routing.module.ts b/client/src/app/app-routing.module.ts index 3ea5b7e5e..c0a2d29e4 100644 --- a/client/src/app/app-routing.module.ts +++ b/client/src/app/app-routing.module.ts | |||
@@ -5,6 +5,7 @@ import { MenuGuards } from '@app/core/routing/menu-guard.service' | |||
5 | import { POSSIBLE_LOCALES } from '@shared/core-utils/i18n' | 5 | import { POSSIBLE_LOCALES } from '@shared/core-utils/i18n' |
6 | import { PreloadSelectedModulesList } from './core' | 6 | import { PreloadSelectedModulesList } from './core' |
7 | import { EmptyComponent } from './empty.component' | 7 | import { EmptyComponent } from './empty.component' |
8 | import { ActorsComponent } from './+actors/actors.component' | ||
8 | 9 | ||
9 | const routes: Routes = [ | 10 | const routes: Routes = [ |
10 | { | 11 | { |
@@ -66,6 +67,18 @@ const routes: Routes = [ | |||
66 | redirectTo: 'videos/watch/playlist' | 67 | redirectTo: 'videos/watch/playlist' |
67 | }, | 68 | }, |
68 | { | 69 | { |
70 | path: 'a', | ||
71 | redirectTo: 'accounts' | ||
72 | }, | ||
73 | { | ||
74 | path: 'c', | ||
75 | redirectTo: 'video-channels' | ||
76 | }, | ||
77 | { | ||
78 | path: ':actorName', | ||
79 | component: ActorsComponent | ||
80 | }, | ||
81 | { | ||
69 | path: '', | 82 | path: '', |
70 | component: EmptyComponent // Avoid 404, app component will redirect dynamically | 83 | component: EmptyComponent // Avoid 404, app component will redirect dynamically |
71 | } | 84 | } |