mirror of https://github.com/bastienwirtz/homer
Add optional filtering on groups
parent
6bf4ed0592
commit
0f168f87c2
|
@ -42,6 +42,11 @@ export default {
|
||||||
this.api = await this.fetch("/api/v1/endpoints/statuses", { method: "GET", cache: "no-cache" }).catch((e) => {
|
this.api = await this.fetch("/api/v1/endpoints/statuses", { method: "GET", cache: "no-cache" }).catch((e) => {
|
||||||
console.error(e);
|
console.error(e);
|
||||||
});
|
});
|
||||||
|
if (this.item.groups) {
|
||||||
|
this.api = this.api?.filter((job) => {
|
||||||
|
return this.item.groups.includes(job.group) === true;
|
||||||
|
})
|
||||||
|
}
|
||||||
},
|
},
|
||||||
countUp: function() {
|
countUp: function() {
|
||||||
if (!this.api) {
|
if (!this.api) {
|
||||||
|
|
Loading…
Reference in New Issue