diff options
Diffstat (limited to 'client/src/app/shared/shared.module.ts')
-rw-r--r-- | client/src/app/shared/shared.module.ts | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/client/src/app/shared/shared.module.ts b/client/src/app/shared/shared.module.ts index b96a9aa41..1e71feb86 100644 --- a/client/src/app/shared/shared.module.ts +++ b/client/src/app/shared/shared.module.ts | |||
@@ -12,6 +12,7 @@ import { BytesPipe, KeysPipe, NgPipesModule } from 'ngx-pipes' | |||
12 | import { SharedModule as PrimeSharedModule } from 'primeng/components/common/shared' | 12 | import { SharedModule as PrimeSharedModule } from 'primeng/components/common/shared' |
13 | 13 | ||
14 | import { AUTH_INTERCEPTOR_PROVIDER } from './auth' | 14 | import { AUTH_INTERCEPTOR_PROVIDER } from './auth' |
15 | import { ButtonComponent } from './buttons/button.component' | ||
15 | import { DeleteButtonComponent } from './buttons/delete-button.component' | 16 | import { DeleteButtonComponent } from './buttons/delete-button.component' |
16 | import { EditButtonComponent } from './buttons/edit-button.component' | 17 | import { EditButtonComponent } from './buttons/edit-button.component' |
17 | import { FromNowPipe } from './misc/from-now.pipe' | 18 | import { FromNowPipe } from './misc/from-now.pipe' |
@@ -22,6 +23,7 @@ import { RestExtractor, RestService } from './rest' | |||
22 | import { UserService } from './users' | 23 | import { UserService } from './users' |
23 | import { VideoAbuseService } from './video-abuse' | 24 | import { VideoAbuseService } from './video-abuse' |
24 | import { VideoBlacklistService } from './video-blacklist' | 25 | import { VideoBlacklistService } from './video-blacklist' |
26 | import { VideoOwnershipService } from './video-ownership' | ||
25 | import { VideoMiniatureComponent } from './video/video-miniature.component' | 27 | import { VideoMiniatureComponent } from './video/video-miniature.component' |
26 | import { VideoFeedComponent } from './video/video-feed.component' | 28 | import { VideoFeedComponent } from './video/video-feed.component' |
27 | import { VideoThumbnailComponent } from './video/video-thumbnail.component' | 29 | import { VideoThumbnailComponent } from './video/video-thumbnail.component' |
@@ -40,7 +42,8 @@ import { | |||
40 | VideoBlacklistValidatorsService, | 42 | VideoBlacklistValidatorsService, |
41 | VideoChannelValidatorsService, | 43 | VideoChannelValidatorsService, |
42 | VideoCommentValidatorsService, | 44 | VideoCommentValidatorsService, |
43 | VideoValidatorsService | 45 | VideoValidatorsService, |
46 | VideoChangeOwnershipValidatorsService, VideoAcceptOwnershipValidatorsService | ||
44 | } from '@app/shared/forms' | 47 | } from '@app/shared/forms' |
45 | import { I18nPrimengCalendarService } from '@app/shared/i18n/i18n-primeng-calendar' | 48 | import { I18nPrimengCalendarService } from '@app/shared/i18n/i18n-primeng-calendar' |
46 | import { ScreenService } from '@app/shared/misc/screen.service' | 49 | import { ScreenService } from '@app/shared/misc/screen.service' |
@@ -77,6 +80,7 @@ import { OverviewService } from '@app/shared/overview' | |||
77 | VideoThumbnailComponent, | 80 | VideoThumbnailComponent, |
78 | VideoMiniatureComponent, | 81 | VideoMiniatureComponent, |
79 | VideoFeedComponent, | 82 | VideoFeedComponent, |
83 | ButtonComponent, | ||
80 | DeleteButtonComponent, | 84 | DeleteButtonComponent, |
81 | EditButtonComponent, | 85 | EditButtonComponent, |
82 | ActionDropdownComponent, | 86 | ActionDropdownComponent, |
@@ -113,6 +117,7 @@ import { OverviewService } from '@app/shared/overview' | |||
113 | VideoThumbnailComponent, | 117 | VideoThumbnailComponent, |
114 | VideoMiniatureComponent, | 118 | VideoMiniatureComponent, |
115 | VideoFeedComponent, | 119 | VideoFeedComponent, |
120 | ButtonComponent, | ||
116 | DeleteButtonComponent, | 121 | DeleteButtonComponent, |
117 | EditButtonComponent, | 122 | EditButtonComponent, |
118 | ActionDropdownComponent, | 123 | ActionDropdownComponent, |
@@ -135,6 +140,7 @@ import { OverviewService } from '@app/shared/overview' | |||
135 | RestService, | 140 | RestService, |
136 | VideoAbuseService, | 141 | VideoAbuseService, |
137 | VideoBlacklistService, | 142 | VideoBlacklistService, |
143 | VideoOwnershipService, | ||
138 | UserService, | 144 | UserService, |
139 | VideoService, | 145 | VideoService, |
140 | AccountService, | 146 | AccountService, |
@@ -156,6 +162,8 @@ import { OverviewService } from '@app/shared/overview' | |||
156 | VideoCaptionsValidatorsService, | 162 | VideoCaptionsValidatorsService, |
157 | VideoBlacklistValidatorsService, | 163 | VideoBlacklistValidatorsService, |
158 | OverviewService, | 164 | OverviewService, |
165 | VideoChangeOwnershipValidatorsService, | ||
166 | VideoAcceptOwnershipValidatorsService, | ||
159 | 167 | ||
160 | I18nPrimengCalendarService, | 168 | I18nPrimengCalendarService, |
161 | ScreenService, | 169 | ScreenService, |