matrix-dimension/web/app/home/home.component.ts

22 lines
522 B
TypeScript
Raw Normal View History

import { Component } from "@angular/core";
@Component({
2017-08-27 05:26:00 +00:00
selector: "my-home",
templateUrl: "./home.component.html",
styleUrls: ["./home.component.scss"],
})
export class HomeComponent {
2017-12-23 23:20:59 +00:00
public hostname: string = window.location.origin;
public integrationsConfig = `
2017-12-23 23:20:59 +00:00
"integrations_ui_url": "${this.hostname}/riot",
"integrations_rest_url": "${this.hostname}/api/v1/scalar",
"integrations_widgets_urls": ["${this.hostname}/widgets"],
`;
constructor() {
// Do stuff
}
}