]>
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' | |
67264e06 | 8 | import { AccountSearchComponent } from './account-search/account-search.component' |
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, | |
23 | SharedGlobalIconModule | |
0626e7af C |
24 | ], |
25 | ||
26 | declarations: [ | |
170726f5 | 27 | AccountsComponent, |
0626e7af | 28 | AccountVideosComponent, |
d3e91a5f | 29 | AccountVideoChannelsComponent, |
37024082 | 30 | AccountSearchComponent |
0626e7af C |
31 | ], |
32 | ||
33 | exports: [ | |
170726f5 | 34 | AccountsComponent |
0626e7af C |
35 | ], |
36 | ||
37 | providers: [] | |
38 | }) | |
170726f5 | 39 | export class AccountsModule { } |