X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fshared.module.ts;h=c99c87c00cd50a00229d35a99bcb129b1b39088c;hb=3866f1a02f73665541468fbadcc3cd2cc459aef2;hp=9810e948583292f5d720fdf0b62a9796fb2eb58a;hpb=ddb83e49ece4e76df1af98aeea30c1d8d133f48c;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/shared.module.ts b/client/src/app/shared/shared.module.ts index 9810e9485..c99c87c00 100644 --- a/client/src/app/shared/shared.module.ts +++ b/client/src/app/shared/shared.module.ts @@ -62,6 +62,9 @@ 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' @NgModule({ imports: [ @@ -104,7 +107,8 @@ import { TopMenuDropdownComponent } from '@app/shared/menu/top-menu-dropdown.com InstanceFeaturesTableComponent, UserBanModalComponent, UserModerationDropdownComponent, - TopMenuDropdownComponent + TopMenuDropdownComponent, + UserNotificationsComponent ], exports: [ @@ -144,6 +148,7 @@ import { TopMenuDropdownComponent } from '@app/shared/menu/top-menu-dropdown.com UserBanModalComponent, UserModerationDropdownComponent, TopMenuDropdownComponent, + UserNotificationsComponent, NumberFormatterPipe, ObjectLengthPipe, @@ -181,10 +186,13 @@ import { TopMenuDropdownComponent } from '@app/shared/menu/top-menu-dropdown.com VideoChangeOwnershipValidatorsService, VideoAcceptOwnershipValidatorsService, BlocklistService, + UserHistoryService, I18nPrimengCalendarService, ScreenService, + UserNotificationService, + I18n ] })