X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bvideos%2F%2Bvideo-edit%2Fvideo-update-routing.module.ts;h=ba9167dd08be5a5ca0f2427991cd45e152ff8974;hb=2a4c0d8bbe29178ae90e776bb9453f86e6d23bd9;hp=a04351b05867bbd4c1fa70cf75c2d751478e3edc;hpb=1942f11d5ee6926ad93dc1b79fae18325ba5de18;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+videos/+video-edit/video-update-routing.module.ts b/client/src/app/+videos/+video-edit/video-update-routing.module.ts index a04351b05..ba9167dd0 100644 --- a/client/src/app/+videos/+video-edit/video-update-routing.module.ts +++ b/client/src/app/+videos/+video-edit/video-update-routing.module.ts @@ -1,7 +1,6 @@ import { NgModule } from '@angular/core' import { RouterModule, Routes } from '@angular/router' import { CanDeactivateGuard, LoginGuard } from '@app/core' -import { MetaGuard } from '@ngx-meta/core' import { VideoUpdateComponent } from './video-update.component' import { VideoUpdateResolver } from './video-update.resolver' @@ -9,7 +8,7 @@ const videoUpdateRoutes: Routes = [ { path: '', component: VideoUpdateComponent, - canActivate: [ MetaGuard, LoginGuard ], + canActivate: [ LoginGuard ], canDeactivate: [ CanDeactivateGuard ], resolve: { videoData: VideoUpdateResolver