2018-04-23 10:16:05 -04: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'
|
2018-04-26 04:03:40 -04:00
|
|
|
import { MyAccountVideoSettingsComponent } from './my-account-settings/my-account-video-settings/my-account-video-settings.component'
|
2018-04-23 10:16:05 -04: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-04-26 04:03:40 -04:00
|
|
|
import { MyAccountProfileComponent } from '@app/my-account/my-account-settings/my-account-profile/my-account-profile.component'
|
2018-04-26 10:11:38 -04:00
|
|
|
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'
|
2018-04-23 10:16:05 -04:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
MyAccountRoutingModule,
|
|
|
|
SharedModule
|
|
|
|
],
|
|
|
|
|
|
|
|
declarations: [
|
|
|
|
MyAccountComponent,
|
|
|
|
MyAccountSettingsComponent,
|
|
|
|
MyAccountChangePasswordComponent,
|
2018-04-26 04:03:40 -04:00
|
|
|
MyAccountVideoSettingsComponent,
|
|
|
|
MyAccountProfileComponent,
|
2018-04-26 10:11:38 -04:00
|
|
|
MyAccountVideosComponent,
|
|
|
|
MyAccountVideoChannelsComponent,
|
|
|
|
MyAccountVideoChannelCreateComponent,
|
|
|
|
MyAccountVideoChannelUpdateComponent
|
2018-04-23 10:16:05 -04:00
|
|
|
],
|
|
|
|
|
|
|
|
exports: [
|
|
|
|
MyAccountComponent
|
|
|
|
],
|
|
|
|
|
|
|
|
providers: []
|
|
|
|
})
|
|
|
|
export class MyAccountModule { }
|