X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fshared.module.ts;h=d1320aeece0f4226b0391e33a9a8dd7c38620c13;hb=7b95f31385eca59ac18197539de30268acc18986;hp=0ec2a9b15dcfae4bc6c9c65d1779fd05cf8da7c0;hpb=6d8c8ea73a774c3568e6d28a4cbebcf7979d5c2a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/shared.module.ts b/client/src/app/shared/shared.module.ts index 0ec2a9b15..d1320aeec 100644 --- a/client/src/app/shared/shared.module.ts +++ b/client/src/app/shared/shared.module.ts @@ -37,13 +37,16 @@ import { LoginValidatorsService, ReactiveFileComponent, ResetPasswordValidatorsService, + InstanceValidatorsService, + TextareaAutoResizeDirective, UserValidatorsService, VideoAbuseValidatorsService, + VideoAcceptOwnershipValidatorsService, VideoBlacklistValidatorsService, + VideoChangeOwnershipValidatorsService, VideoChannelValidatorsService, VideoCommentValidatorsService, - VideoValidatorsService, - VideoChangeOwnershipValidatorsService, VideoAcceptOwnershipValidatorsService + VideoValidatorsService } from '@app/shared/forms' import { I18nPrimengCalendarService } from '@app/shared/i18n/i18n-primeng-calendar' import { ScreenService } from '@app/shared/misc/screen.service' @@ -53,12 +56,17 @@ import { PeertubeCheckboxComponent } from '@app/shared/forms/peertube-checkbox.c import { VideoImportService } from '@app/shared/video-import/video-import.service' import { ActionDropdownComponent } from '@app/shared/buttons/action-dropdown.component' import { NgbDropdownModule, NgbModalModule, NgbPopoverModule, NgbTabsetModule, NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap' -import { SubscribeButtonComponent, RemoteSubscribeComponent, UserSubscriptionService } from '@app/shared/user-subscription' +import { RemoteSubscribeComponent, SubscribeButtonComponent, UserSubscriptionService } from '@app/shared/user-subscription' import { InstanceFeaturesTableComponent } from '@app/shared/instance/instance-features-table.component' import { OverviewService } from '@app/shared/overview' import { UserBanModalComponent } from '@app/shared/moderation' import { UserModerationDropdownComponent } from '@app/shared/moderation/user-moderation-dropdown.component' import { BlocklistService } from '@app/shared/blocklist' +import { TopMenuDropdownComponent } from '@app/shared/menu/top-menu-dropdown.component' +import { UserHistoryService } from '@app/shared/users/user-history.service' +import { UserNotificationService } from '@app/shared/users/user-notification.service' +import { UserNotificationsComponent } from '@app/shared/users/user-notifications.component' +import { InstanceService } from '@app/shared/instance/instance.service' @NgModule({ imports: [ @@ -92,6 +100,7 @@ import { BlocklistService } from '@app/shared/blocklist' FromNowPipe, MarkdownTextareaComponent, InfiniteScrollerDirective, + TextareaAutoResizeDirective, HelpComponent, ReactiveFileComponent, PeertubeCheckboxComponent, @@ -99,7 +108,9 @@ import { BlocklistService } from '@app/shared/blocklist' RemoteSubscribeComponent, InstanceFeaturesTableComponent, UserBanModalComponent, - UserModerationDropdownComponent + UserModerationDropdownComponent, + TopMenuDropdownComponent, + UserNotificationsComponent ], exports: [ @@ -129,6 +140,7 @@ import { BlocklistService } from '@app/shared/blocklist' ActionDropdownComponent, MarkdownTextareaComponent, InfiniteScrollerDirective, + TextareaAutoResizeDirective, HelpComponent, ReactiveFileComponent, PeertubeCheckboxComponent, @@ -137,6 +149,8 @@ import { BlocklistService } from '@app/shared/blocklist' InstanceFeaturesTableComponent, UserBanModalComponent, UserModerationDropdownComponent, + TopMenuDropdownComponent, + UserNotificationsComponent, NumberFormatterPipe, ObjectLengthPipe, @@ -173,11 +187,16 @@ import { BlocklistService } from '@app/shared/blocklist' OverviewService, VideoChangeOwnershipValidatorsService, VideoAcceptOwnershipValidatorsService, + InstanceValidatorsService, BlocklistService, + UserHistoryService, + InstanceService, I18nPrimengCalendarService, ScreenService, + UserNotificationService, + I18n ] })