Merge pull request #129 from PatchMon/dev-1-2-8

Global Search + Proxmox Auto lxc enrollment
This commit is contained in:
9 Technology Group LTD
2025-10-03 22:08:26 +01:00
committed by GitHub
11 changed files with 2516 additions and 47 deletions

View File

@@ -260,4 +260,9 @@ export const formatRelativeTime = (date) => {
return `${seconds} second${seconds > 1 ? "s" : ""} ago`;
};
// Search API
export const searchAPI = {
global: (query) => api.get("/search", { params: { q: query } }),
};
export default api;