aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+about/about.module.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-09-05 15:39:52 +0200
committerChocobozzz <me@florianbigard.com>2019-09-05 15:40:09 +0200
commit1eb23e12f757dc4e9a6161b1b933f35a761755c3 (patch)
tree1166c2d01d9aa2385c0049a4ae4556249ed1aeb5 /client/src/app/+about/about.module.ts
parent5819e694ba238b5e4ee97347c6cf5ee7a82725b5 (diff)
downloadPeerTube-1eb23e12f757dc4e9a6161b1b933f35a761755c3.tar.gz
PeerTube-1eb23e12f757dc4e9a6161b1b933f35a761755c3.tar.zst
PeerTube-1eb23e12f757dc4e9a6161b1b933f35a761755c3.zip
Add contributors in about peertube page
Diffstat (limited to 'client/src/app/+about/about.module.ts')
-rw-r--r--client/src/app/+about/about.module.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/app/+about/about.module.ts b/client/src/app/+about/about.module.ts
index 49a7a52f8..14bf76e55 100644
--- a/client/src/app/+about/about.module.ts
+++ b/client/src/app/+about/about.module.ts
@@ -1,5 +1,4 @@
1import { NgModule } from '@angular/core' 1import { NgModule } from '@angular/core'
2
3import { AboutRoutingModule } from './about-routing.module' 2import { AboutRoutingModule } from './about-routing.module'
4import { AboutComponent } from './about.component' 3import { AboutComponent } from './about.component'
5import { SharedModule } from '../shared' 4import { SharedModule } from '../shared'
@@ -7,6 +6,7 @@ import { AboutInstanceComponent } from '@app/+about/about-instance/about-instanc
7import { AboutPeertubeComponent } from '@app/+about/about-peertube/about-peertube.component' 6import { AboutPeertubeComponent } from '@app/+about/about-peertube/about-peertube.component'
8import { ContactAdminModalComponent } from '@app/+about/about-instance/contact-admin-modal.component' 7import { ContactAdminModalComponent } from '@app/+about/about-instance/contact-admin-modal.component'
9import { 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'
10 10
11@NgModule({ 11@NgModule({
12 imports: [ 12 imports: [
@@ -19,6 +19,7 @@ import { AboutFollowsComponent } from '@app/+about/about-follows/about-follows.c
19 AboutInstanceComponent, 19 AboutInstanceComponent,
20 AboutPeertubeComponent, 20 AboutPeertubeComponent,
21 AboutFollowsComponent, 21 AboutFollowsComponent,
22 AboutPeertubeContributorsComponent,
22 ContactAdminModalComponent 23 ContactAdminModalComponent
23 ], 24 ],
24 25