]>
Commit | Line | Data |
---|---|---|
17119e4a | 1 | import { AutoCompleteModule } from 'primeng/autocomplete' |
17119e4a C |
2 | import { TableModule } from 'primeng/table' |
3 | import { DragDropModule } from '@angular/cdk/drag-drop' | |
4 | import { NgModule } from '@angular/core' | |
5 | import { SharedAbuseListModule } from '@app/shared/shared-abuse-list' | |
6 | import { SharedFormModule } from '@app/shared/shared-forms' | |
7 | import { SharedGlobalIconModule } from '@app/shared/shared-icons' | |
8 | import { SharedMainModule } from '@app/shared/shared-main' | |
9 | import { SharedModerationModule } from '@app/shared/shared-moderation' | |
10 | import { SharedShareModal } from '@app/shared/shared-share-modal' | |
e4611b54 | 11 | import { SharedTablesModule } from '@app/shared/shared-tables' |
17119e4a C |
12 | import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings' |
13 | import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription/shared-user-subscription.module' | |
14 | import { SharedVideoLiveModule } from '@app/shared/shared-video-live' | |
15 | import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature' | |
16 | import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist/shared-video-playlist.module' | |
4beda9e1 | 17 | import { SharedActorImageModule } from '../shared/shared-actor-image/shared-actor-image.module' |
e4611b54 | 18 | import { MyFollowersComponent } from './my-follows/my-followers.component' |
4beda9e1 | 19 | import { MySubscriptionsComponent } from './my-follows/my-subscriptions.component' |
17119e4a C |
20 | import { MyHistoryComponent } from './my-history/my-history.component' |
21 | import { MyLibraryRoutingModule } from './my-library-routing.module' | |
22 | import { MyLibraryComponent } from './my-library.component' | |
23 | import { MyAcceptOwnershipComponent } from './my-ownership/my-accept-ownership/my-accept-ownership.component' | |
24 | import { MyOwnershipComponent } from './my-ownership/my-ownership.component' | |
17119e4a C |
25 | import { MyVideoImportsComponent } from './my-video-imports/my-video-imports.component' |
26 | import { MyVideoPlaylistCreateComponent } from './my-video-playlists/my-video-playlist-create.component' | |
27 | import { MyVideoPlaylistElementsComponent } from './my-video-playlists/my-video-playlist-elements.component' | |
28 | import { MyVideoPlaylistUpdateComponent } from './my-video-playlists/my-video-playlist-update.component' | |
29 | import { MyVideoPlaylistsComponent } from './my-video-playlists/my-video-playlists.component' | |
30 | import { VideoChangeOwnershipComponent } from './my-videos/modals/video-change-ownership.component' | |
31 | import { MyVideosComponent } from './my-videos/my-videos.component' | |
32 | ||
33 | @NgModule({ | |
34 | imports: [ | |
35 | MyLibraryRoutingModule, | |
36 | ||
37 | AutoCompleteModule, | |
38 | TableModule, | |
17119e4a C |
39 | DragDropModule, |
40 | ||
41 | SharedMainModule, | |
42 | SharedFormModule, | |
43 | SharedModerationModule, | |
44 | SharedVideoMiniatureModule, | |
45 | SharedUserSubscriptionModule, | |
46 | SharedVideoPlaylistModule, | |
47 | SharedUserInterfaceSettingsModule, | |
48 | SharedGlobalIconModule, | |
49 | SharedAbuseListModule, | |
50 | SharedShareModal, | |
fbdcd4ec | 51 | SharedVideoLiveModule, |
e4611b54 C |
52 | SharedActorImageModule, |
53 | SharedTablesModule | |
17119e4a C |
54 | ], |
55 | ||
56 | declarations: [ | |
57 | MyLibraryComponent, | |
58 | ||
59 | MyVideosComponent, | |
60 | ||
61 | VideoChangeOwnershipComponent, | |
62 | ||
63 | MyOwnershipComponent, | |
64 | MyAcceptOwnershipComponent, | |
65 | MyVideoImportsComponent, | |
66 | MySubscriptionsComponent, | |
4beda9e1 | 67 | MyFollowersComponent, |
17119e4a C |
68 | MyHistoryComponent, |
69 | ||
70 | MyVideoPlaylistCreateComponent, | |
71 | MyVideoPlaylistUpdateComponent, | |
72 | MyVideoPlaylistsComponent, | |
73 | MyVideoPlaylistElementsComponent | |
74 | ], | |
75 | ||
76 | exports: [ | |
77 | MyLibraryComponent | |
78 | ], | |
79 | ||
80 | providers: [] | |
81 | }) | |
82 | export class MyLibraryModule { | |
83 | } |