mirror of https://github.com/ghostfolio/ghostfolio
committed by
GitHub
26 changed files with 73 additions and 221 deletions
@ -1,14 +0,0 @@ |
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { MatTabsModule } from '@angular/material/tabs'; |
|||
import { RouterModule } from '@angular/router'; |
|||
|
|||
import { AboutPageRoutingModule } from './about-page-routing.module'; |
|||
import { AboutPageComponent } from './about-page.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [AboutPageComponent], |
|||
imports: [AboutPageRoutingModule, CommonModule, MatTabsModule, RouterModule], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class AboutPageModule {} |
@ -1,19 +0,0 @@ |
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { MarkdownModule } from 'ngx-markdown'; |
|||
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; |
|||
|
|||
import { ChangelogPageRoutingModule } from './changelog-page-routing.module'; |
|||
import { ChangelogPageComponent } from './changelog-page.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [ChangelogPageComponent], |
|||
imports: [ |
|||
ChangelogPageRoutingModule, |
|||
CommonModule, |
|||
MarkdownModule.forChild(), |
|||
NgxSkeletonLoaderModule |
|||
], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class ChangelogPageModule {} |
@ -1,13 +0,0 @@ |
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { MarkdownModule } from 'ngx-markdown'; |
|||
|
|||
import { LicensePageRoutingModule } from './license-page-routing.module'; |
|||
import { LicensePageComponent } from './license-page.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [LicensePageComponent], |
|||
imports: [LicensePageRoutingModule, CommonModule, MarkdownModule.forChild()], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class LicensePageModule {} |
@ -1,19 +0,0 @@ |
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { MatButtonModule } from '@angular/material/button'; |
|||
import { MatCardModule } from '@angular/material/card'; |
|||
|
|||
import { OpenSourceSoftwareFriendsPageRoutingModule } from './oss-friends-page-routing.module'; |
|||
import { OpenSourceSoftwareFriendsPageComponent } from './oss-friends-page.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [OpenSourceSoftwareFriendsPageComponent], |
|||
imports: [ |
|||
CommonModule, |
|||
MatButtonModule, |
|||
MatCardModule, |
|||
OpenSourceSoftwareFriendsPageRoutingModule |
|||
], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class OpenSourceSoftwareFriendsPageModule {} |
@ -1,19 +0,0 @@ |
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { MatButtonModule } from '@angular/material/button'; |
|||
import { RouterModule } from '@angular/router'; |
|||
|
|||
import { AboutOverviewPageRoutingModule } from './about-overview-page-routing.module'; |
|||
import { AboutOverviewPageComponent } from './about-overview-page.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [AboutOverviewPageComponent], |
|||
imports: [ |
|||
AboutOverviewPageRoutingModule, |
|||
CommonModule, |
|||
MatButtonModule, |
|||
RouterModule |
|||
], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class AboutOverviewPageModule {} |
@ -1,17 +0,0 @@ |
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { MarkdownModule } from 'ngx-markdown'; |
|||
|
|||
import { PrivacyPolicyPageRoutingModule } from './privacy-policy-page-routing.module'; |
|||
import { PrivacyPolicyPageComponent } from './privacy-policy-page.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [PrivacyPolicyPageComponent], |
|||
imports: [ |
|||
CommonModule, |
|||
MarkdownModule.forChild(), |
|||
PrivacyPolicyPageRoutingModule |
|||
], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class PrivacyPolicyPageModule {} |
@ -1,17 +0,0 @@ |
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { MarkdownModule } from 'ngx-markdown'; |
|||
|
|||
import { TermsOfServicePageRoutingModule } from './terms-of-service-page-routing.module'; |
|||
import { TermsOfServicePageComponent } from './terms-of-service-page.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [TermsOfServicePageComponent], |
|||
imports: [ |
|||
CommonModule, |
|||
MarkdownModule.forChild(), |
|||
TermsOfServicePageRoutingModule |
|||
], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class TermsOfServicePageModule {} |
Loading…
Reference in new issue