From 17119e4a546522468878cf115558b17949ab50d0 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 12 Nov 2020 15:28:54 +0100 Subject: Reorganize left menu and account menu Add my-settings and my-library in left menu Move administration below my-library Split account menu: my-setting and my library --- client/src/app/core/auth/auth.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'client/src/app/core/auth/auth.service.ts') diff --git a/client/src/app/core/auth/auth.service.ts b/client/src/app/core/auth/auth.service.ts index 10e2c2c58..3410c5a6f 100644 --- a/client/src/app/core/auth/auth.service.ts +++ b/client/src/app/core/auth/auth.service.ts @@ -62,15 +62,15 @@ export class AuthService { return false }, undefined, $localize`Go to my subscriptions`), new Hotkey('m v', (event: KeyboardEvent): boolean => { - this.router.navigate([ '/my-account/videos' ]) + this.router.navigate([ '/my-library/videos' ]) return false }, undefined, $localize`Go to my videos`), new Hotkey('m i', (event: KeyboardEvent): boolean => { - this.router.navigate([ '/my-account/video-imports' ]) + this.router.navigate([ '/my-library/video-imports' ]) return false }, undefined, $localize`Go to my imports`), new Hotkey('m c', (event: KeyboardEvent): boolean => { - this.router.navigate([ '/my-account/video-channels' ]) + this.router.navigate([ '/my-library/video-channels' ]) return false }, undefined, $localize`Go to my channels`) ] -- cgit v1.2.3