diff options
author | Chocobozzz <me@florianbigard.com> | 2019-08-01 11:38:26 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-08-01 11:38:47 +0200 |
commit | 16b5525950c27172b8426e03cbb1c59794cfc44c (patch) | |
tree | e29f0dd37058cc90cdff07f7ab0df281e7db3505 /client/src/app | |
parent | 1f8ac02436237f0a4f2f10b8c37b28578cc5a411 (diff) | |
download | PeerTube-16b5525950c27172b8426e03cbb1c59794cfc44c.tar.gz PeerTube-16b5525950c27172b8426e03cbb1c59794cfc44c.tar.zst PeerTube-16b5525950c27172b8426e03cbb1c59794cfc44c.zip |
Update Angular -> 8.2.0
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/search/search.service.ts | 2 | ||||
-rw-r--r-- | client/src/app/videos/videos-routing.module.ts | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/search/search.service.ts b/client/src/app/search/search.service.ts index 8f137a321..bb5532757 100644 --- a/client/src/app/search/search.service.ts +++ b/client/src/app/search/search.service.ts | |||
@@ -5,7 +5,7 @@ import { Observable } from 'rxjs' | |||
5 | import { ComponentPagination } from '@app/shared/rest/component-pagination.model' | 5 | import { ComponentPagination } from '@app/shared/rest/component-pagination.model' |
6 | import { VideoService } from '@app/shared/video/video.service' | 6 | import { VideoService } from '@app/shared/video/video.service' |
7 | import { RestExtractor, RestService } from '@app/shared' | 7 | import { RestExtractor, RestService } from '@app/shared' |
8 | import { environment } from 'environments/environment' | 8 | import { environment } from '../../environments/environment' |
9 | import { ResultList, Video as VideoServerModel, VideoChannel as VideoChannelServerModel } from '../../../../shared' | 9 | import { ResultList, Video as VideoServerModel, VideoChannel as VideoChannelServerModel } from '../../../../shared' |
10 | import { Video } from '@app/shared/video/video.model' | 10 | import { Video } from '@app/shared/video/video.model' |
11 | import { AdvancedSearch } from '@app/search/advanced-search.model' | 11 | import { AdvancedSearch } from '@app/search/advanced-search.model' |
diff --git a/client/src/app/videos/videos-routing.module.ts b/client/src/app/videos/videos-routing.module.ts index bc7520207..4eaae93cb 100644 --- a/client/src/app/videos/videos-routing.module.ts +++ b/client/src/app/videos/videos-routing.module.ts | |||
@@ -77,7 +77,7 @@ const videosRoutes: Routes = [ | |||
77 | }, | 77 | }, |
78 | { | 78 | { |
79 | path: 'upload', | 79 | path: 'upload', |
80 | loadChildren: () => import('app/videos/+video-edit/video-add.module').then(m => m.VideoAddModule), | 80 | loadChildren: () => import('@app/videos/+video-edit/video-add.module').then(m => m.VideoAddModule), |
81 | data: { | 81 | data: { |
82 | meta: { | 82 | meta: { |
83 | title: 'Upload a video' | 83 | title: 'Upload a video' |
@@ -86,7 +86,7 @@ const videosRoutes: Routes = [ | |||
86 | }, | 86 | }, |
87 | { | 87 | { |
88 | path: 'update/:uuid', | 88 | path: 'update/:uuid', |
89 | loadChildren: () => import('app/videos/+video-edit/video-update.module').then(m => m.VideoUpdateModule), | 89 | loadChildren: () => import('@app/videos/+video-edit/video-update.module').then(m => m.VideoUpdateModule), |
90 | data: { | 90 | data: { |
91 | meta: { | 91 | meta: { |
92 | title: 'Edit a video' | 92 | title: 'Edit a video' |
@@ -95,7 +95,7 @@ const videosRoutes: Routes = [ | |||
95 | }, | 95 | }, |
96 | { | 96 | { |
97 | path: 'watch', | 97 | path: 'watch', |
98 | loadChildren: () => import('app/videos/+video-watch/video-watch.module').then(m => m.VideoWatchModule), | 98 | loadChildren: () => import('@app/videos/+video-watch/video-watch.module').then(m => m.VideoWatchModule), |
99 | data: { | 99 | data: { |
100 | preload: 3000 | 100 | preload: 3000 |
101 | } | 101 | } |