aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+about/about.module.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-02-03 10:31:34 +0100
committerChocobozzz <me@florianbigard.com>2020-02-03 10:33:08 +0100
commitb42f9c400e7b677046ab0034a3cf7aaaa73ecb6d (patch)
treedd00268a13ef51c77ceaaeb2ffbcd874e6f177df /client/src/app/+about/about.module.ts
parenta15871560f80e07386c1dabb8370cd2664ecfd1f (diff)
downloadPeerTube-b42f9c400e7b677046ab0034a3cf7aaaa73ecb6d.tar.gz
PeerTube-b42f9c400e7b677046ab0034a3cf7aaaa73ecb6d.tar.zst
PeerTube-b42f9c400e7b677046ab0034a3cf7aaaa73ecb6d.zip
Use a resolver for the about page
Diffstat (limited to 'client/src/app/+about/about.module.ts')
-rw-r--r--client/src/app/+about/about.module.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/src/app/+about/about.module.ts b/client/src/app/+about/about.module.ts
index 14bf76e55..84d697540 100644
--- a/client/src/app/+about/about.module.ts
+++ b/client/src/app/+about/about.module.ts
@@ -7,6 +7,7 @@ import { AboutPeertubeComponent } from '@app/+about/about-peertube/about-peertub
7import { ContactAdminModalComponent } from '@app/+about/about-instance/contact-admin-modal.component' 7import { ContactAdminModalComponent } from '@app/+about/about-instance/contact-admin-modal.component'
8import { AboutFollowsComponent } from '@app/+about/about-follows/about-follows.component' 8import { AboutFollowsComponent } from '@app/+about/about-follows/about-follows.component'
9import { AboutPeertubeContributorsComponent } from '@app/+about/about-peertube/about-peertube-contributors.component' 9import { AboutPeertubeContributorsComponent } from '@app/+about/about-peertube/about-peertube-contributors.component'
10import { AboutInstanceResolver } from '@app/+about/about-instance/about-instance.resolver'
10 11
11@NgModule({ 12@NgModule({
12 imports: [ 13 imports: [
@@ -28,6 +29,7 @@ import { AboutPeertubeContributorsComponent } from '@app/+about/about-peertube/a
28 ], 29 ],
29 30
30 providers: [ 31 providers: [
32 AboutInstanceResolver
31 ] 33 ]
32}) 34})
33export class AboutModule { } 35export class AboutModule { }