Skip to content
This repository has been archived by the owner on Apr 22, 2024. It is now read-only.

Commit

Permalink
fix: missing fields in serializers (#938)
Browse files Browse the repository at this point in the history
  • Loading branch information
obdulia-losantos authored May 28, 2021
1 parent 273c94e commit 0ecd605
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions aether-kernel/aether/kernel/api/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ def update(self, instance, validated_data):
class Meta:
list_serializer_class = EntityListSerializer
exclude_bulk_update = ('attachments', )
fields = '__all__'


class SubmissionListSerializer(serializers.ListSerializer):
Expand Down Expand Up @@ -501,6 +502,7 @@ def update(self, instance, validated_data):
class Meta:
list_serializer_class = SubmissionListSerializer
exclude_bulk_update = ('attachments', )
fields = '__all__'


class ProjectStatsSerializer(DynamicFieldsMixin, DynamicFieldsModelSerializer):
Expand Down

0 comments on commit 0ecd605

Please sign in to comment.