16067: Ignores certain fields on create & update api calls.
[arvados-workbench2.git] / src / services / collection-service / collection-service.ts
index 6eb9b5ba664f15892d570206051a93803050987b..f7955fbae1dbc21feb55be34e64cc8cbd7673c91 100644 (file)
@@ -15,7 +15,11 @@ export type UploadProgress = (fileId: number, loaded: number, total: number, cur
 
 export class CollectionService extends TrashableResourceService<CollectionResource> {
     constructor(serverApi: AxiosInstance, private webdavClient: WebDAV, private authService: AuthService, actions: ApiActions) {
-        super(serverApi, "collections", actions);
+        super(serverApi, "collections", actions, [
+            'unsignedManifestText',
+            'storageClassesConfirmed',
+            'storageClassesConfirmedAt'
+        ]);
     }
 
     async files(uuid: string) {