blob: a065e8a679cab61bbb0f07c3513f18f24e7bf879 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import {Component} from '@angular/core';
@Component({
selector: 'app-support',
template: `
<ul>
<li><a href="../../version">Version</a></li>
<li><a href="../../flags">Feature Flags</a></li>
<li><a href="#/healthStatus">Probe</a></li>
<li>
<form action="../../rest/models/reset" method="post">
<button name="upvote" value="Upvote"></button>
</form>
</li>
</ul>
`,
})
export class SupportComponent {
}
|