CEC-3672 Use SUMS version instead of Version (#279)

This commit is contained in:
John Wu
2023-02-10 16:31:19 -08:00
committed by GitHub
parent 9cf84fc426
commit 0da2289f37
7 changed files with 79 additions and 52 deletions

View File

@@ -27,13 +27,13 @@ const updatesAPI = {
return { message: "OK" };
},
getSoftwareVersions: async (token) => {
getSUMSVersions: async (token) => {
return {
"data": ["2023.02.01.0.0.A", "2023.02.01.0.0.B"]
};
},
updateManifestVersion: async (_id, version) => {
updateSUMSVersion: async (_id, version) => {
return { version };
},
};