mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
553 B
26 lines
553 B
import { Component, OnInit } from '@angular/core';
|
|
import { Subject } from 'rxjs';
|
|
|
|
@Component({
|
|
selector: 'gf-resources-page',
|
|
templateUrl: './resources-page.html',
|
|
styleUrls: ['./resources-page.scss']
|
|
})
|
|
export class ResourcesPageComponent implements OnInit {
|
|
private unsubscribeSubject = new Subject<void>();
|
|
|
|
/**
|
|
* @constructor
|
|
*/
|
|
public constructor() {}
|
|
|
|
/**
|
|
* Initializes the controller
|
|
*/
|
|
public ngOnInit() {}
|
|
|
|
public ngOnDestroy() {
|
|
this.unsubscribeSubject.next();
|
|
this.unsubscribeSubject.complete();
|
|
}
|
|
}
|
|
|