]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+my-account/my-account.module.ts
Add ability to list video imports
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
... / ...
CommitLineData
1import { TableModule } from 'primeng/table'
2import { NgModule } from '@angular/core'
3import { SharedModule } from '../shared'
4import { MyAccountRoutingModule } from './my-account-routing.module'
5import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
6import { MyAccountVideoSettingsComponent } from './my-account-settings/my-account-video-settings/my-account-video-settings.component'
7import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
8import { MyAccountComponent } from './my-account.component'
9import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
10import { MyAccountProfileComponent } from '@app/+my-account/my-account-settings/my-account-profile/my-account-profile.component'
11import { MyAccountVideoChannelsComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channels.component'
12import { MyAccountVideoChannelCreateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-create.component'
13import { MyAccountVideoChannelUpdateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-update.component'
14import { ActorAvatarInfoComponent } from '@app/+my-account/shared/actor-avatar-info.component'
15import { MyAccountVideoImportsComponent } from '@app/+my-account/my-account-video-imports/my-account-video-imports.component'
16
17@NgModule({
18 imports: [
19 MyAccountRoutingModule,
20 SharedModule,
21 TableModule
22 ],
23
24 declarations: [
25 MyAccountComponent,
26 MyAccountSettingsComponent,
27 MyAccountChangePasswordComponent,
28 MyAccountVideoSettingsComponent,
29 MyAccountProfileComponent,
30 MyAccountVideosComponent,
31 MyAccountVideoChannelsComponent,
32 MyAccountVideoChannelCreateComponent,
33 MyAccountVideoChannelUpdateComponent,
34 ActorAvatarInfoComponent,
35 MyAccountVideoImportsComponent
36 ],
37
38 exports: [
39 MyAccountComponent
40 ],
41
42 providers: []
43})
44export class MyAccountModule { }