fix: add back name to person table export

This commit is contained in:
James Graham
2021-04-19 09:48:39 +01:00
parent 2664ff6e83
commit 78056c7752

View File

@@ -10,8 +10,7 @@ class PersonSerializer(base.FlattenedModelSerializer):
model = models.Person
fields = [
'id',
# Name is excluded from exports
# See https://github.com/Southampton-RSG/breccia-mapper/issues/35
'name',
]