mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
22 lines
522 B
TypeScript
22 lines
522 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
@Component({
|
|
selector: "my-home",
|
|
templateUrl: "./home.component.html",
|
|
styleUrls: ["./home.component.scss"],
|
|
})
|
|
export class HomeComponent {
|
|
|
|
public hostname: string = window.location.origin;
|
|
public integrationsConfig = `
|
|
"integrations_ui_url": "${this.hostname}/riot",
|
|
"integrations_rest_url": "${this.hostname}/api/v1/scalar",
|
|
"integrations_widgets_urls": ["${this.hostname}/widgets"],
|
|
`;
|
|
|
|
constructor() {
|
|
// Do stuff
|
|
}
|
|
|
|
}
|