aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+video-studio
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-05-06 14:23:02 +0200
committerChocobozzz <me@florianbigard.com>2022-05-06 14:23:02 +0200
commitf40712abbbb74e51f06037ef02757c42736bccf8 (patch)
tree4b130c6387f9687d52d570907eb1bbac6bc04b61 /client/src/app/+video-studio
parent49f0468d44468528c2fb2c8b0efd19cdaeeec43d (diff)
downloadPeerTube-f40712abbbb74e51f06037ef02757c42736bccf8.tar.gz
PeerTube-f40712abbbb74e51f06037ef02757c42736bccf8.tar.zst
PeerTube-f40712abbbb74e51f06037ef02757c42736bccf8.zip
Add ability to filter overall video stats by date
Diffstat (limited to 'client/src/app/+video-studio')
-rw-r--r--client/src/app/+video-studio/video-studio-routing.module.ts2
1 files changed, 2 insertions, 0 deletions
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 @@
1import { NgModule } from '@angular/core' 1import { NgModule } from '@angular/core'
2import { RouterModule, Routes } from '@angular/router' 2import { RouterModule, Routes } from '@angular/router'
3import { LoginGuard } from '@app/core'
3import { VideoResolver } from '@app/shared/shared-main' 4import { VideoResolver } from '@app/shared/shared-main'
4import { VideoStudioEditComponent } from './edit' 5import { VideoStudioEditComponent } from './edit'
5 6
6const videoStudioRoutes: Routes = [ 7const videoStudioRoutes: Routes = [
7 { 8 {
8 path: '', 9 path: '',
10 canActivateChild: [ LoginGuard ],
9 children: [ 11 children: [
10 { 12 {
11 path: 'edit/:videoId', 13 path: 'edit/:videoId',