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 <[email protected]>
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."""