CEC-3796 - UI for creating and managing RxSWIN

This commit is contained in:
pauladamseniii
2023-10-13 17:18:36 -04:00
parent 0f1886463e
commit 66706b9c3c
8 changed files with 171 additions and 3 deletions

View File

@@ -122,6 +122,18 @@ const updatesAPI = {
})
.then(fetchRespHandler)
.catch(errorHandler);
},
getSUMSVersionRxSwins: async (sums_version, token) => {
return fetch(`${API_ENDPOINT}/manifest/sums/${sums_version}/rxswins`, {
method: "GET",
headers: Object.assign(
{ "Content-Type": "application/json" },
getAuthHeaderOptions(token)
),
})
.then(fetchRespHandler)
.catch(errorHandler);
}
};