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.
Ombi/src/Ombi/ClientApp/src/app/settings/wiki.component.ts

19 lines
414 B

import { Component, Input } from "@angular/core";
import { Router } from "@angular/router";
@Component({
selector:"wiki",
templateUrl: "./wiki.component.html",
})
export class WikiComponent {
@Input() public text: string;
public domain: string = "http://docs.ombi.app"
get url(): string {
return this.router.url.toLowerCase();
}
constructor(private router: Router) { }
}