aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+about/about.module.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-06-23 14:10:17 +0200
committerChocobozzz <chocobozzz@cpy.re>2020-06-23 16:00:49 +0200
commit67ed6552b831df66713bac9e672738796128d33f (patch)
tree59c97d41e0b49d75a90aa3de987968ab9b1ff447 /client/src/app/+about/about.module.ts
parent0c4bacbff53bc732f5a2677d62a6ead7752e2405 (diff)
downloadPeerTube-67ed6552b831df66713bac9e672738796128d33f.tar.gz
PeerTube-67ed6552b831df66713bac9e672738796128d33f.tar.zst
PeerTube-67ed6552b831df66713bac9e672738796128d33f.zip
Reorganize client shared modules
Diffstat (limited to 'client/src/app/+about/about.module.ts')
-rw-r--r--client/src/app/+about/about.module.ts21
1 files changed, 14 insertions, 7 deletions
diff --git a/client/src/app/+about/about.module.ts b/client/src/app/+about/about.module.ts
index 84d697540..1aca14033 100644
--- a/client/src/app/+about/about.module.ts
+++ b/client/src/app/+about/about.module.ts
@@ -1,18 +1,25 @@
1import { NgModule } from '@angular/core' 1import { NgModule } from '@angular/core'
2import { AboutRoutingModule } from './about-routing.module' 2import { AboutFollowsComponent } from '@app/+about/about-follows/about-follows.component'
3import { AboutComponent } from './about.component'
4import { SharedModule } from '../shared'
5import { AboutInstanceComponent } from '@app/+about/about-instance/about-instance.component' 3import { AboutInstanceComponent } from '@app/+about/about-instance/about-instance.component'
6import { AboutPeertubeComponent } from '@app/+about/about-peertube/about-peertube.component' 4import { AboutInstanceResolver } from '@app/+about/about-instance/about-instance.resolver'
7import { ContactAdminModalComponent } from '@app/+about/about-instance/contact-admin-modal.component' 5import { ContactAdminModalComponent } from '@app/+about/about-instance/contact-admin-modal.component'
8import { AboutFollowsComponent } from '@app/+about/about-follows/about-follows.component'
9import { AboutPeertubeContributorsComponent } from '@app/+about/about-peertube/about-peertube-contributors.component' 6import { AboutPeertubeContributorsComponent } from '@app/+about/about-peertube/about-peertube-contributors.component'
10import { AboutInstanceResolver } from '@app/+about/about-instance/about-instance.resolver' 7import { AboutPeertubeComponent } from '@app/+about/about-peertube/about-peertube.component'
8import { SharedFormModule } from '@app/shared/shared-forms'
9import { SharedGlobalIconModule } from '@app/shared/shared-icons'
10import { SharedInstanceModule } from '@app/shared/shared-instance'
11import { SharedMainModule } from '@app/shared/shared-main'
12import { AboutRoutingModule } from './about-routing.module'
13import { AboutComponent } from './about.component'
11 14
12@NgModule({ 15@NgModule({
13 imports: [ 16 imports: [
14 AboutRoutingModule, 17 AboutRoutingModule,
15 SharedModule 18
19 SharedMainModule,
20 SharedFormModule,
21 SharedInstanceModule,
22 SharedGlobalIconModule
16 ], 23 ],
17 24
18 declarations: [ 25 declarations: [