Thomas Kaul
2 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
10 deletions
-
apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.component.ts
|
|
@ -1,6 +1,5 @@ |
|
|
import { Component, OnDestroy } from '@angular/core'; |
|
|
import { Component } from '@angular/core'; |
|
|
import { MarkdownModule } from 'ngx-markdown'; |
|
|
import { MarkdownModule } from 'ngx-markdown'; |
|
|
import { Subject } from 'rxjs'; |
|
|
|
|
|
|
|
|
|
|
|
@Component({ |
|
|
@Component({ |
|
|
imports: [MarkdownModule], |
|
|
imports: [MarkdownModule], |
|
|
@ -8,11 +7,4 @@ import { Subject } from 'rxjs'; |
|
|
styleUrls: ['./privacy-policy-page.scss'], |
|
|
styleUrls: ['./privacy-policy-page.scss'], |
|
|
templateUrl: './privacy-policy-page.html' |
|
|
templateUrl: './privacy-policy-page.html' |
|
|
}) |
|
|
}) |
|
|
export class GfPrivacyPolicyPageComponent implements OnDestroy { |
|
|
export class GfPrivacyPolicyPageComponent {} |
|
|
private unsubscribeSubject = new Subject<void>(); |
|
|
|
|
|
|
|
|
|
|
|
public ngOnDestroy() { |
|
|
|
|
|
this.unsubscribeSubject.next(); |
|
|
|
|
|
this.unsubscribeSubject.complete(); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|