]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+my-account/my-account.module.ts
Users can change ownership of their video [#510] (#888)
[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 { AutoCompleteModule } from 'primeng/autocomplete'
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'
7import { MyAccountVideoSettingsComponent } from './my-account-settings/my-account-video-settings/my-account-video-settings.component'
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'
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'
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'
18import { ActorAvatarInfoComponent } from '@app/+my-account/shared/actor-avatar-info.component'
19import { MyAccountVideoImportsComponent } from '@app/+my-account/my-account-video-imports/my-account-video-imports.component'
20import { MyAccountDangerZoneComponent } from '@app/+my-account/my-account-settings/my-account-danger-zone'
21import { MyAccountSubscriptionsComponent } from '@app/+my-account/my-account-subscriptions/my-account-subscriptions.component'
22
23@NgModule({
24 imports: [
25 TableModule,
26 MyAccountRoutingModule,
27 AutoCompleteModule,
28 SharedModule,
29 TableModule
30 ],
31
32 declarations: [
33 MyAccountComponent,
34 MyAccountSettingsComponent,
35 MyAccountChangePasswordComponent,
36 MyAccountVideoSettingsComponent,
37 MyAccountProfileComponent,
38 MyAccountVideosComponent,
39 VideoChangeOwnershipComponent,
40 MyAccountOwnershipComponent,
41 MyAccountAcceptOwnershipComponent,
42 MyAccountVideoChannelsComponent,
43 MyAccountVideoChannelCreateComponent,
44 MyAccountVideoChannelUpdateComponent,
45 ActorAvatarInfoComponent,
46 MyAccountVideoImportsComponent,
47 MyAccountDangerZoneComponent,
48 MyAccountSubscriptionsComponent
49 ],
50
51 exports: [
52 MyAccountComponent
53 ],
54
55 providers: []
56})
57export class MyAccountModule { }