CEC-4523: Add bulk archive support (#379)

* CEC-4523: add archive endpoint and action
This commit is contained in:
Tristan Timblin
2023-07-03 12:07:19 -04:00
committed by GitHub
parent a7c13306c5
commit 11406aa8da
8 changed files with 163 additions and 63 deletions

View File

@@ -5,6 +5,10 @@ const manifestsAPI = {
return data;
},
archiveManifest: async (data, token) => {
return { message: "Archived 1 update manifests" };
},
deleteManifest: async (manifest_id, token) => {
return { message: "OK" };
},