X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Babout%2Fabout.module.ts;h=84d6975402097c5f2e6060bc834eabb74a0c83b1;hb=5411da31d1070654e4c4b80ad3ad6889b048a4db;hp=49a7a52f848ad2b1813f5cc505c740eea54b339c;hpb=b91bc1d1f3591c35ab4426f6ab594b4bd9f1ef62;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+about/about.module.ts b/client/src/app/+about/about.module.ts index 49a7a52f8..84d697540 100644 --- a/client/src/app/+about/about.module.ts +++ b/client/src/app/+about/about.module.ts @@ -1,5 +1,4 @@ import { NgModule } from '@angular/core' - import { AboutRoutingModule } from './about-routing.module' import { AboutComponent } from './about.component' import { SharedModule } from '../shared' @@ -7,6 +6,8 @@ import { AboutInstanceComponent } from '@app/+about/about-instance/about-instanc import { AboutPeertubeComponent } from '@app/+about/about-peertube/about-peertube.component' import { ContactAdminModalComponent } from '@app/+about/about-instance/contact-admin-modal.component' import { AboutFollowsComponent } from '@app/+about/about-follows/about-follows.component' +import { AboutPeertubeContributorsComponent } from '@app/+about/about-peertube/about-peertube-contributors.component' +import { AboutInstanceResolver } from '@app/+about/about-instance/about-instance.resolver' @NgModule({ imports: [ @@ -19,6 +20,7 @@ import { AboutFollowsComponent } from '@app/+about/about-follows/about-follows.c AboutInstanceComponent, AboutPeertubeComponent, AboutFollowsComponent, + AboutPeertubeContributorsComponent, ContactAdminModalComponent ], @@ -27,6 +29,7 @@ import { AboutFollowsComponent } from '@app/+about/about-follows/about-follows.c ], providers: [ + AboutInstanceResolver ] }) export class AboutModule { }