]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+accounts/accounts.module.ts
Redesign account page
[github/Chocobozzz/PeerTube.git] / client / src / app / +accounts / accounts.module.ts
CommitLineData
0626e7af 1import { NgModule } from '@angular/core'
67ed6552
C
2import { SharedFormModule } from '@app/shared/shared-forms'
3import { SharedGlobalIconModule } from '@app/shared/shared-icons'
4import { SharedMainModule } from '@app/shared/shared-main'
5import { SharedModerationModule } from '@app/shared/shared-moderation'
6import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription'
7import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
67264e06 8import { AccountSearchComponent } from './account-search/account-search.component'
d3e91a5f 9import { AccountVideoChannelsComponent } from './account-video-channels/account-video-channels.component'
67ed6552
C
10import { AccountVideosComponent } from './account-videos/account-videos.component'
11import { AccountsRoutingModule } from './accounts-routing.module'
12import { 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 39export class AccountsModule { }