From 78056c7752f910a1748b4512efeffcc2ee5733b4 Mon Sep 17 00:00:00 2001 From: James Graham Date: Mon, 19 Apr 2021 09:48:39 +0100 Subject: [PATCH] fix: add back name to person table export --- export/serializers/people.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/export/serializers/people.py b/export/serializers/people.py index 8791775..ea00ef2 100644 --- a/export/serializers/people.py +++ b/export/serializers/people.py @@ -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', ]