A simple, universal public Statuspage.
https://status.sp-codes.de
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
696 B
26 lines
696 B
import {Component, OnInit} from '@angular/core'; |
|
import {ApiService} from "./_service/api.service"; |
|
import {Observable} from "rxjs"; |
|
import {MetaInfo} from "./_data/data"; |
|
import {Title} from "@angular/platform-browser"; |
|
|
|
@Component({ |
|
selector: 'app-root', |
|
templateUrl: './app.component.html', |
|
styleUrls: ['./app.component.scss'] |
|
}) |
|
export class AppComponent implements OnInit { |
|
title: string; |
|
description: string; |
|
|
|
constructor(private api: ApiService, private htmlTitle: Title) { |
|
} |
|
|
|
ngOnInit(): void { |
|
this.api.getMetaInfo().subscribe(info => { |
|
this.title = info.title; |
|
this.description = info.description; |
|
this.htmlTitle.setTitle(this.title); |
|
}) |
|
} |
|
}
|
|
|