]>
Commit | Line | Data |
---|---|---|
0626e7af | 1 | import { NgModule } from '@angular/core' |
67ed6552 C |
2 | import { SharedFormModule } from '@app/shared/shared-forms' |
3 | import { SharedGlobalIconModule } from '@app/shared/shared-icons' | |
4 | import { SharedMainModule } from '@app/shared/shared-main' | |
5 | import { SharedModerationModule } from '@app/shared/shared-moderation' | |
6 | import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription' | |
7 | import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature' | |
dd24f1bb | 8 | import { SharedActorImageModule } from '../shared/shared-actor-image/shared-actor-image.module' |
d3e91a5f | 9 | import { AccountVideoChannelsComponent } from './account-video-channels/account-video-channels.component' |
67ed6552 C |
10 | import { AccountVideosComponent } from './account-videos/account-videos.component' |
11 | import { AccountsRoutingModule } from './accounts-routing.module' | |
12 | import { AccountsComponent } from './accounts.component' | |
0626e7af C |
13 | |
14 | @NgModule({ | |
15 | imports: [ | |
170726f5 | 16 | AccountsRoutingModule, |
67ed6552 C |
17 | |
18 | SharedMainModule, | |
19 | SharedFormModule, | |
20 | SharedUserSubscriptionModule, | |
21 | SharedModerationModule, | |
22 | SharedVideoMiniatureModule, | |
fbdcd4ec | 23 | SharedGlobalIconModule, |
746018f6 | 24 | SharedActorImageModule |
0626e7af C |
25 | ], |
26 | ||
27 | declarations: [ | |
170726f5 | 28 | AccountsComponent, |
0626e7af | 29 | AccountVideosComponent, |
dd24f1bb | 30 | AccountVideoChannelsComponent |
0626e7af C |
31 | ], |
32 | ||
33 | exports: [ | |
170726f5 | 34 | AccountsComponent |
0626e7af C |
35 | ], |
36 | ||
37 | providers: [] | |
38 | }) | |
170726f5 | 39 | export class AccountsModule { } |