X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fshared.module.ts;h=62ce97102746d98b84ecb9b2b9e963cdadd77e68;hb=788487140c500abeb69ca44daf3a9e26efa8d36f;hp=2178eebc815c201cfc6c64b6369783ece3e75bfc;hpb=0626e7af82e02f8a5bd1e74a7d4d8c916d073ceb;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/shared.module.ts b/client/src/app/shared/shared.module.ts index 2178eebc8..62ce97102 100644 --- a/client/src/app/shared/shared.module.ts +++ b/client/src/app/shared/shared.module.ts @@ -32,6 +32,26 @@ import { VideoFeedComponent } from './video/video-feed.component' import { VideoThumbnailComponent } from './video/video-thumbnail.component' import { VideoService } from './video/video.service' import { AccountService } from '@app/shared/account/account.service' +import { VideoChannelService } from '@app/shared/video-channel/video-channel.service' +import { I18n } from '@ngx-translate/i18n-polyfill' +import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service' +import { + CustomConfigValidatorsService, + LoginValidatorsService, + ReactiveFileComponent, + ResetPasswordValidatorsService, + UserValidatorsService, + VideoAbuseValidatorsService, + VideoChannelValidatorsService, + VideoCommentValidatorsService, + VideoValidatorsService +} from '@app/shared/forms' +import { I18nPrimengCalendarService } from '@app/shared/i18n/i18n-primeng-calendar' +import { ScreenService } from '@app/shared/misc/screen.service' +import { VideoCaptionsValidatorsService } from '@app/shared/forms/form-validators/video-captions-validators.service' +import { VideoCaptionService } from '@app/shared/video-caption' +import { PeertubeCheckboxComponent } from '@app/shared/forms/peertube-checkbox.component' +import { VideoImportService } from '@app/shared/video-import/video-import.service' @NgModule({ imports: [ @@ -63,7 +83,9 @@ import { AccountService } from '@app/shared/account/account.service' FromNowPipe, MarkdownTextareaComponent, InfiniteScrollerDirective, - HelpComponent + HelpComponent, + ReactiveFileComponent, + PeertubeCheckboxComponent ], exports: [ @@ -91,6 +113,8 @@ import { AccountService } from '@app/shared/account/account.service' MarkdownTextareaComponent, InfiniteScrollerDirective, HelpComponent, + ReactiveFileComponent, + PeertubeCheckboxComponent, NumberFormatterPipe, ObjectLengthPipe, @@ -106,7 +130,26 @@ import { AccountService } from '@app/shared/account/account.service' UserService, VideoService, AccountService, - MarkdownService + MarkdownService, + VideoChannelService, + VideoCaptionService, + + FormValidatorService, + CustomConfigValidatorsService, + LoginValidatorsService, + ResetPasswordValidatorsService, + UserValidatorsService, + VideoAbuseValidatorsService, + VideoChannelValidatorsService, + VideoCommentValidatorsService, + VideoValidatorsService, + VideoCaptionsValidatorsService, + VideoImportService, + + I18nPrimengCalendarService, + ScreenService, + + I18n ] }) export class SharedModule { }