]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account.module.ts
Add history page on client
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
CommitLineData
ed31c059 1import { TableModule } from 'primeng/table'
4bb6886d 2import { NgModule } from '@angular/core'
74d63469 3import { AutoCompleteModule } from 'primeng/autocomplete'
4bb6886d
C
4import { SharedModule } from '../shared'
5import { MyAccountRoutingModule } from './my-account-routing.module'
6import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
ed56ad11 7import { MyAccountVideoSettingsComponent } from './my-account-settings/my-account-video-settings/my-account-video-settings.component'
4bb6886d
C
8import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
9import { MyAccountComponent } from './my-account.component'
10import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
74d63469
GR
11import { VideoChangeOwnershipComponent } from './my-account-videos/video-change-ownership/video-change-ownership.component'
12import { MyAccountOwnershipComponent } from './my-account-ownership/my-account-ownership.component'
13import { MyAccountAcceptOwnershipComponent } from './my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component'
62e62f11
C
14import { MyAccountProfileComponent } from '@app/+my-account/my-account-settings/my-account-profile/my-account-profile.component'
15import { MyAccountVideoChannelsComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channels.component'
16import { MyAccountVideoChannelCreateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-create.component'
17import { MyAccountVideoChannelUpdateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-update.component'
52d9f792 18import { ActorAvatarInfoComponent } from '@app/+my-account/shared/actor-avatar-info.component'
ed31c059 19import { MyAccountVideoImportsComponent } from '@app/+my-account/my-account-video-imports/my-account-video-imports.component'
92b9d60c 20import { MyAccountDangerZoneComponent } from '@app/+my-account/my-account-settings/my-account-danger-zone'
22a16e36 21import { MyAccountSubscriptionsComponent } from '@app/+my-account/my-account-subscriptions/my-account-subscriptions.component'
af5767ff
C
22import { MyAccountBlocklistComponent } from '@app/+my-account/my-account-blocklist/my-account-blocklist.component'
23import { MyAccountServerBlocklistComponent } from '@app/+my-account/my-account-blocklist/my-account-server-blocklist.component'
80bfd33c 24import { MyAccountHistoryComponent } from '@app/+my-account/my-account-history/my-account-history.component'
4bb6886d
C
25
26@NgModule({
27 imports: [
74d63469 28 TableModule,
4bb6886d 29 MyAccountRoutingModule,
74d63469 30 AutoCompleteModule,
ed31c059
C
31 SharedModule,
32 TableModule
4bb6886d
C
33 ],
34
35 declarations: [
36 MyAccountComponent,
37 MyAccountSettingsComponent,
38 MyAccountChangePasswordComponent,
ed56ad11
C
39 MyAccountVideoSettingsComponent,
40 MyAccountProfileComponent,
08c1efbe 41 MyAccountVideosComponent,
74d63469
GR
42 VideoChangeOwnershipComponent,
43 MyAccountOwnershipComponent,
44 MyAccountAcceptOwnershipComponent,
08c1efbe
C
45 MyAccountVideoChannelsComponent,
46 MyAccountVideoChannelCreateComponent,
52d9f792 47 MyAccountVideoChannelUpdateComponent,
ed31c059 48 ActorAvatarInfoComponent,
92b9d60c 49 MyAccountVideoImportsComponent,
22a16e36 50 MyAccountDangerZoneComponent,
af5767ff
C
51 MyAccountSubscriptionsComponent,
52 MyAccountBlocklistComponent,
80bfd33c
C
53 MyAccountServerBlocklistComponent,
54 MyAccountHistoryComponent
4bb6886d
C
55 ],
56
57 exports: [
58 MyAccountComponent
59 ],
60
61 providers: []
62})
63export class MyAccountModule { }