From f40712abbbb74e51f06037ef02757c42736bccf8 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 6 May 2022 14:23:02 +0200 Subject: Add ability to filter overall video stats by date --- client/src/app/+video-studio/video-studio-routing.module.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'client/src/app/+video-studio') diff --git a/client/src/app/+video-studio/video-studio-routing.module.ts b/client/src/app/+video-studio/video-studio-routing.module.ts index 4c08631a1..9d276be7c 100644 --- a/client/src/app/+video-studio/video-studio-routing.module.ts +++ b/client/src/app/+video-studio/video-studio-routing.module.ts @@ -1,11 +1,13 @@ import { NgModule } from '@angular/core' import { RouterModule, Routes } from '@angular/router' +import { LoginGuard } from '@app/core' import { VideoResolver } from '@app/shared/shared-main' import { VideoStudioEditComponent } from './edit' const videoStudioRoutes: Routes = [ { path: '', + canActivateChild: [ LoginGuard ], children: [ { path: 'edit/:videoId', -- cgit v1.2.3