]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account.module.ts
more explicit error messages for file uploads
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
CommitLineData
74d63469 1import { AutoCompleteModule } from 'primeng/autocomplete'
67ed6552
C
2import { TableModule } from 'primeng/table'
3import { DragDropModule } from '@angular/cdk/drag-drop'
4import { NgModule } from '@angular/core'
94148c90 5import { SharedAbuseListModule } from '@app/shared/shared-abuse-list'
983aa6f2 6import { SharedFormModule } from '@app/shared/shared-forms'
67ed6552
C
7import { SharedGlobalIconModule } from '@app/shared/shared-icons'
8import { SharedMainModule } from '@app/shared/shared-main'
9import { SharedModerationModule } from '@app/shared/shared-moderation'
82f443de 10import { SharedShareModal } from '@app/shared/shared-share-modal'
67ed6552 11import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
94148c90 12import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
67ed6552
C
13import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
14import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
67ed6552 15import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
4bb6886d 16import { MyAccountRoutingModule } from './my-account-routing.module'
67ed6552 17import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
4bb6886d 18import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
67ed6552
C
19import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-danger-zone'
20import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
21import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
4bb6886d 22import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
5beb89f2 23import { MyAccountApplicationsComponent } from './my-account-applications/my-account-applications.component'
67ed6552 24import { MyAccountComponent } from './my-account.component'
4bb6886d
C
25
26@NgModule({
27 imports: [
28 MyAccountRoutingModule,
67ed6552 29
74d63469 30 AutoCompleteModule,
276d9652 31 TableModule,
67ed6552
C
32 DragDropModule,
33
34 SharedMainModule,
983aa6f2 35 SharedFormModule,
67ed6552 36 SharedModerationModule,
67ed6552 37 SharedUserInterfaceSettingsModule,
94148c90 38 SharedGlobalIconModule,
82f443de 39 SharedAbuseListModule,
17119e4a 40 SharedShareModal
4bb6886d
C
41 ],
42
43 declarations: [
44 MyAccountComponent,
45 MyAccountSettingsComponent,
46 MyAccountChangePasswordComponent,
ed56ad11 47 MyAccountProfileComponent,
0ba5f5ba 48 MyAccountChangeEmailComponent,
5beb89f2 49 MyAccountApplicationsComponent,
0ba5f5ba 50
22a16e36 51 MyAccountDangerZoneComponent,
af5767ff 52 MyAccountBlocklistComponent,
94148c90 53 MyAccountAbusesListComponent,
80bfd33c 54 MyAccountServerBlocklistComponent,
2f1548fd 55 MyAccountNotificationsComponent,
17119e4a 56 MyAccountNotificationPreferencesComponent
4bb6886d
C
57 ],
58
59 exports: [
60 MyAccountComponent
61 ],
62
63 providers: []
64})
ccfcdb67
C
65export class MyAccountModule {
66}