1
0
mirror of https://github.com/etesync/server synced 2024-11-22 16:58:08 +00:00

Collection: calculate a value for ctag in the meanwhile.

This commit is contained in:
Tom Hacohen 2020-02-26 21:22:58 +02:00
parent c74ed50bd5
commit 5ceaa9fb1a

View File

@ -54,7 +54,13 @@ class CollectionSerializer(serializers.ModelSerializer):
return None return None
def get_ctag(self, obj): def get_ctag(self, obj):
return 'FIXME' # FIXME: we need to have something that's more privacy friendly
last_revision = models.CollectionItemRevision.objects.filter(item__collection=obj).last()
if last_revision is None:
# FIXME: what is the etag for None? Though if we use the revision for collection it should be shared anyway.
return None
return str(last_revision.id)
def create(self, validated_data): def create(self, validated_data):
"""Function that's called when this serializer creates an item""" """Function that's called when this serializer creates an item"""