Feat : Various features
Some checks failed
Build and Push Docker Images / docker (push) Failing after 9s

This commit is contained in:
jeanotx32
2026-05-18 23:48:50 -04:00
parent dfca25ab03
commit c7cc18101a
11 changed files with 353 additions and 22 deletions

View File

@@ -99,3 +99,12 @@ export async function composeUpdate(vpsId, project) {
})
return handleResponse(res)
}
export async function updateVps(vpsId, data) {
const res = await fetch(`${BASE}/vps/${vpsId}`, {
method: 'PUT',
headers: authHeaders(),
body: JSON.stringify(data),
})
return handleResponse(res)
}