16067: Adds remaining collection resource read-only fields.
[arvados-workbench2.git] / src / services / collection-service / collection-service.ts
index f7955fbae1dbc21feb55be34e64cc8cbd7673c91..77f5bf3bc605b76a6a37053e9ff1b540925319a4 100644 (file)
@@ -16,9 +16,14 @@ 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, [
-            'unsignedManifestText',
+            'fileCount',
+            'fileSizeTotal',
+            'replicationConfirmed',
+            'replicationConfirmedAt',
             'storageClassesConfirmed',
-            'storageClassesConfirmedAt'
+            'storageClassesConfirmedAt',
+            'unsignedManifestText',
+            'version',
         ]);
     }