]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account.module.ts
Don't log "The play() request was interrupted..."
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
CommitLineData
4bb6886d
C
1import { NgModule } from '@angular/core'
2import { SharedModule } from '../shared'
3import { MyAccountRoutingModule } from './my-account-routing.module'
4import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
ed56ad11 5import { MyAccountVideoSettingsComponent } from './my-account-settings/my-account-video-settings/my-account-video-settings.component'
4bb6886d
C
6import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
7import { MyAccountComponent } from './my-account.component'
8import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
62e62f11
C
9import { MyAccountProfileComponent } from '@app/+my-account/my-account-settings/my-account-profile/my-account-profile.component'
10import { MyAccountVideoChannelsComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channels.component'
11import { MyAccountVideoChannelCreateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-create.component'
12import { MyAccountVideoChannelUpdateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-update.component'
52d9f792 13import { ActorAvatarInfoComponent } from '@app/+my-account/shared/actor-avatar-info.component'
4bb6886d
C
14
15@NgModule({
16 imports: [
17 MyAccountRoutingModule,
18 SharedModule
19 ],
20
21 declarations: [
22 MyAccountComponent,
23 MyAccountSettingsComponent,
24 MyAccountChangePasswordComponent,
ed56ad11
C
25 MyAccountVideoSettingsComponent,
26 MyAccountProfileComponent,
08c1efbe
C
27 MyAccountVideosComponent,
28 MyAccountVideoChannelsComponent,
29 MyAccountVideoChannelCreateComponent,
52d9f792
C
30 MyAccountVideoChannelUpdateComponent,
31 ActorAvatarInfoComponent
4bb6886d
C
32 ],
33
34 exports: [
35 MyAccountComponent
36 ],
37
38 providers: []
39})
40export class MyAccountModule { }