feat: add labels ui page

This commit is contained in:
allanice001
2025-11-03 12:23:20 +00:00
parent 9d60b6cbfe
commit ee824a9c5a
30 changed files with 360 additions and 2005 deletions

View File

@@ -1,6 +1,15 @@
import { orgStore } from "@/auth/org.ts"
import { authStore } from "@/auth/store.ts"
import { Configuration, MeApi, MeAPIKeysApi, OrgsApi, ServersApi, SshApi, TaintsApi } from "@/sdk"
import {
Configuration,
LabelsApi,
MeApi,
MeAPIKeysApi,
OrgsApi,
ServersApi,
SshApi,
TaintsApi,
} from "@/sdk"
export const API_BASE = "/api/v1"
@@ -75,3 +84,7 @@ export function makeServersApi() {
export function makeTaintsApi() {
return makeApiClient(TaintsApi)
}
export function makeLabelsApi() {
return makeApiClient(LabelsApi)
}