Skip to content

Commit

Permalink
Added missing field on present_minimal method of Person
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven committed Nov 20, 2024
1 parent e6acd94 commit f04a1bb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions zou/app/models/person.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ def present_minimal(self, relations=False, milliseconds=False):
)
return {
"id": data["id"],
"type": data["type"],
"first_name": data["first_name"],
"last_name": data["last_name"],
"full_name": self.full_name,
Expand Down

0 comments on commit f04a1bb

Please sign in to comment.