16067: Adds remaining collection resource read-only fields. 16067-collection-copy-fix
authorLucas Di Pentima <lucas@di-pentima.com.ar>
Wed, 5 Feb 2020 22:01:16 +0000 (19:01 -0300)
committerLucas Di Pentima <lucas@di-pentima.com.ar>
Wed, 5 Feb 2020 22:01:16 +0000 (19:01 -0300)
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas@di-pentima.com.ar>

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, [
 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',
             'storageClassesConfirmed',
-            'storageClassesConfirmedAt'
+            'storageClassesConfirmedAt',
+            'unsignedManifestText',
+            'version',
         ]);
     }
 
         ]);
     }