X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Babout%2Fabout.module.ts;h=6a3d72290376e4e889679df099c8fa9d4be137a9;hb=c9c0cc5179359b6a9fa7c46bf73df99c4f72c1fc;hp=14bf76e55ac86da59720784bf06cf43d9377228c;hpb=8c559fad1e1c4c2ab7f1388c73200aa4c6256d74;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+about/about.module.ts b/client/src/app/+about/about.module.ts index 14bf76e55..6a3d72290 100644 --- a/client/src/app/+about/about.module.ts +++ b/client/src/app/+about/about.module.ts @@ -1,17 +1,26 @@ import { NgModule } from '@angular/core' -import { AboutRoutingModule } from './about-routing.module' -import { AboutComponent } from './about.component' -import { SharedModule } from '../shared' +import { AboutFollowsComponent } from '@app/+about/about-follows/about-follows.component' import { AboutInstanceComponent } from '@app/+about/about-instance/about-instance.component' -import { AboutPeertubeComponent } from '@app/+about/about-peertube/about-peertube.component' +import { AboutInstanceResolver } from '@app/+about/about-instance/about-instance.resolver' 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 { AboutPeertubeComponent } from '@app/+about/about-peertube/about-peertube.component' +import { SharedCustomMarkupModule } from '@app/shared/shared-custom-markup' +import { SharedFormModule } from '@app/shared/shared-forms' +import { SharedGlobalIconModule } from '@app/shared/shared-icons' +import { SharedInstanceModule } from '@app/shared/shared-instance' +import { SharedMainModule } from '@app/shared/shared-main' +import { AboutRoutingModule } from './about-routing.module' +import { AboutComponent } from './about.component' @NgModule({ imports: [ AboutRoutingModule, - SharedModule + + SharedMainModule, + SharedFormModule, + SharedInstanceModule, + SharedGlobalIconModule, + SharedCustomMarkupModule ], declarations: [ @@ -19,7 +28,6 @@ import { AboutPeertubeContributorsComponent } from '@app/+about/about-peertube/a AboutInstanceComponent, AboutPeertubeComponent, AboutFollowsComponent, - AboutPeertubeContributorsComponent, ContactAdminModalComponent ], @@ -28,6 +36,7 @@ import { AboutPeertubeContributorsComponent } from '@app/+about/about-peertube/a ], providers: [ + AboutInstanceResolver ] }) export class AboutModule { }