aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared.module.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-03-06 15:36:44 +0100
committerChocobozzz <chocobozzz@cpy.re>2019-03-18 11:17:59 +0100
commit830b4faff15fb9c81d88e8e69fcdf94aad32bef8 (patch)
tree53de6c9e30ce88734b4bdda62016e0498fe78491 /client/src/app/shared/shared.module.ts
parentd4c9f45b31eda0b7a391ddc83eb290ca5cba311f (diff)
downloadPeerTube-830b4faff15fb9c81d88e8e69fcdf94aad32bef8.tar.gz
PeerTube-830b4faff15fb9c81d88e8e69fcdf94aad32bef8.tar.zst
PeerTube-830b4faff15fb9c81d88e8e69fcdf94aad32bef8.zip
Add/update/delete/list my playlists
Diffstat (limited to 'client/src/app/shared/shared.module.ts')
-rw-r--r--client/src/app/shared/shared.module.ts20
1 files changed, 18 insertions, 2 deletions
diff --git a/client/src/app/shared/shared.module.ts b/client/src/app/shared/shared.module.ts
index 1c4e3df1a..60a7bd6e2 100644
--- a/client/src/app/shared/shared.module.ts
+++ b/client/src/app/shared/shared.module.ts
@@ -45,6 +45,7 @@ import {
45 VideoChangeOwnershipValidatorsService, 45 VideoChangeOwnershipValidatorsService,
46 VideoChannelValidatorsService, 46 VideoChannelValidatorsService,
47 VideoCommentValidatorsService, 47 VideoCommentValidatorsService,
48 VideoPlaylistValidatorsService,
48 VideoValidatorsService 49 VideoValidatorsService
49} from '@app/shared/forms' 50} from '@app/shared/forms'
50import { I18nPrimengCalendarService } from '@app/shared/i18n/i18n-primeng-calendar' 51import { I18nPrimengCalendarService } from '@app/shared/i18n/i18n-primeng-calendar'
@@ -68,8 +69,11 @@ import { UserNotificationsComponent } from '@app/shared/users/user-notifications
68import { InstanceService } from '@app/shared/instance/instance.service' 69import { InstanceService } from '@app/shared/instance/instance.service'
69import { HtmlRendererService, LinkifierService, MarkdownService } from '@app/shared/renderer' 70import { HtmlRendererService, LinkifierService, MarkdownService } from '@app/shared/renderer'
70import { ConfirmComponent } from '@app/shared/confirm/confirm.component' 71import { ConfirmComponent } from '@app/shared/confirm/confirm.component'
71import { GlobalIconComponent } from '@app/shared/icons/global-icon.component'
72import { SmallLoaderComponent } from '@app/shared/misc/small-loader.component' 72import { SmallLoaderComponent } from '@app/shared/misc/small-loader.component'
73import { VideoPlaylistService } from '@app/shared/video-playlist/video-playlist.service'
74import { ImageUploadComponent } from '@app/shared/images/image-upload.component'
75import { GlobalIconComponent } from '@app/shared/images/global-icon.component'
76import { VideoPlaylistMiniatureComponent } from '@app/shared/video-playlist/video-playlist-miniature.component'
73 77
74@NgModule({ 78@NgModule({
75 imports: [ 79 imports: [
@@ -92,8 +96,11 @@ import { SmallLoaderComponent } from '@app/shared/misc/small-loader.component'
92 declarations: [ 96 declarations: [
93 LoaderComponent, 97 LoaderComponent,
94 SmallLoaderComponent, 98 SmallLoaderComponent,
99
95 VideoThumbnailComponent, 100 VideoThumbnailComponent,
96 VideoMiniatureComponent, 101 VideoMiniatureComponent,
102 VideoPlaylistMiniatureComponent,
103
97 FeedComponent, 104 FeedComponent,
98 ButtonComponent, 105 ButtonComponent,
99 DeleteButtonComponent, 106 DeleteButtonComponent,
@@ -116,7 +123,9 @@ import { SmallLoaderComponent } from '@app/shared/misc/small-loader.component'
116 TopMenuDropdownComponent, 123 TopMenuDropdownComponent,
117 UserNotificationsComponent, 124 UserNotificationsComponent,
118 ConfirmComponent, 125 ConfirmComponent,
119 GlobalIconComponent 126
127 GlobalIconComponent,
128 ImageUploadComponent
120 ], 129 ],
121 130
122 exports: [ 131 exports: [
@@ -138,8 +147,11 @@ import { SmallLoaderComponent } from '@app/shared/misc/small-loader.component'
138 147
139 LoaderComponent, 148 LoaderComponent,
140 SmallLoaderComponent, 149 SmallLoaderComponent,
150
141 VideoThumbnailComponent, 151 VideoThumbnailComponent,
142 VideoMiniatureComponent, 152 VideoMiniatureComponent,
153 VideoPlaylistMiniatureComponent,
154
143 FeedComponent, 155 FeedComponent,
144 ButtonComponent, 156 ButtonComponent,
145 DeleteButtonComponent, 157 DeleteButtonComponent,
@@ -159,7 +171,9 @@ import { SmallLoaderComponent } from '@app/shared/misc/small-loader.component'
159 TopMenuDropdownComponent, 171 TopMenuDropdownComponent,
160 UserNotificationsComponent, 172 UserNotificationsComponent,
161 ConfirmComponent, 173 ConfirmComponent,
174
162 GlobalIconComponent, 175 GlobalIconComponent,
176 ImageUploadComponent,
163 177
164 NumberFormatterPipe, 178 NumberFormatterPipe,
165 ObjectLengthPipe, 179 ObjectLengthPipe,
@@ -177,6 +191,7 @@ import { SmallLoaderComponent } from '@app/shared/misc/small-loader.component'
177 VideoService, 191 VideoService,
178 AccountService, 192 AccountService,
179 VideoChannelService, 193 VideoChannelService,
194 VideoPlaylistService,
180 VideoCaptionService, 195 VideoCaptionService,
181 VideoImportService, 196 VideoImportService,
182 UserSubscriptionService, 197 UserSubscriptionService,
@@ -186,6 +201,7 @@ import { SmallLoaderComponent } from '@app/shared/misc/small-loader.component'
186 LoginValidatorsService, 201 LoginValidatorsService,
187 ResetPasswordValidatorsService, 202 ResetPasswordValidatorsService,
188 UserValidatorsService, 203 UserValidatorsService,
204 VideoPlaylistValidatorsService,
189 VideoAbuseValidatorsService, 205 VideoAbuseValidatorsService,
190 VideoChannelValidatorsService, 206 VideoChannelValidatorsService,
191 VideoCommentValidatorsService, 207 VideoCommentValidatorsService,