1
0
Fork 0
peertube/client/src/app/+my-account/my-account.module.ts

47 lines
2.2 KiB
TypeScript
Raw Normal View History

2018-08-02 15:48:50 +00:00
import { TableModule } from 'primeng/table'
2018-04-23 14:16:05 +00:00
import { NgModule } from '@angular/core'
import { SharedModule } from '../shared'
import { MyAccountRoutingModule } from './my-account-routing.module'
import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
import { MyAccountVideoSettingsComponent } from './my-account-settings/my-account-video-settings/my-account-video-settings.component'
2018-04-23 14:16:05 +00:00
import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
import { MyAccountComponent } from './my-account.component'
import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
2018-05-09 07:26:41 +00:00
import { MyAccountProfileComponent } from '@app/+my-account/my-account-settings/my-account-profile/my-account-profile.component'
import { MyAccountVideoChannelsComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channels.component'
import { MyAccountVideoChannelCreateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-create.component'
import { MyAccountVideoChannelUpdateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-update.component'
import { ActorAvatarInfoComponent } from '@app/+my-account/shared/actor-avatar-info.component'
2018-08-02 15:48:50 +00:00
import { MyAccountVideoImportsComponent } from '@app/+my-account/my-account-video-imports/my-account-video-imports.component'
2018-08-08 08:55:27 +00:00
import { MyAccountDangerZoneComponent } from '@app/+my-account/my-account-settings/my-account-danger-zone'
2018-04-23 14:16:05 +00:00
@NgModule({
imports: [
MyAccountRoutingModule,
2018-08-02 15:48:50 +00:00
SharedModule,
TableModule
2018-04-23 14:16:05 +00:00
],
declarations: [
MyAccountComponent,
MyAccountSettingsComponent,
MyAccountChangePasswordComponent,
MyAccountVideoSettingsComponent,
MyAccountProfileComponent,
2018-04-26 14:11:38 +00:00
MyAccountVideosComponent,
MyAccountVideoChannelsComponent,
MyAccountVideoChannelCreateComponent,
MyAccountVideoChannelUpdateComponent,
2018-08-02 15:48:50 +00:00
ActorAvatarInfoComponent,
2018-08-08 08:55:27 +00:00
MyAccountVideoImportsComponent,
MyAccountDangerZoneComponent
2018-04-23 14:16:05 +00:00
],
exports: [
MyAccountComponent
],
providers: []
})
export class MyAccountModule { }