You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2021/07/13 15:02:32 UTC

[airavata-django-portal] branch staging updated: AIRAVATA-3420 Add back 'hidden' field for backwards compat in remote API

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch staging
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


The following commit(s) were added to refs/heads/staging by this push:
     new 4004146  AIRAVATA-3420 Add back 'hidden' field for backwards compat in remote API
4004146 is described below

commit 4004146eb2bb1bafb229a3ac8ef26130d3ca1876
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Tue Jul 13 11:02:20 2021 -0400

    AIRAVATA-3420 Add back 'hidden' field for backwards compat in remote API
---
 django_airavata/apps/api/serializers.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/django_airavata/apps/api/serializers.py b/django_airavata/apps/api/serializers.py
index 823c531..84a4258 100644
--- a/django_airavata/apps/api/serializers.py
+++ b/django_airavata/apps/api/serializers.py
@@ -858,6 +858,7 @@ class UserStorageFileSerializer(serializers.Serializer):
     createdTime = serializers.DateTimeField(source='created_time')
     mimeType = serializers.CharField(source='mime_type')
     size = serializers.IntegerField()
+    hidden = serializers.BooleanField()
 
     def get_downloadURL(self, file):
         """Getter for downloadURL field."""