Skip to content

Commit

Permalink
Remove reviewed_by_release_manager from JSON export
Browse files Browse the repository at this point in the history
  • Loading branch information
pmac committed Dec 4, 2023
1 parent fd3298c commit 497563f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nucleus/rna/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def notes(self, public_only=False):

def to_dict(self):
"""Return a dict all all data about the release"""
data = model_to_dict(self, exclude=["id"])
data = model_to_dict(self, exclude=["id", "reviewed_by_release_manager"])
data["title"] = str(self)
data["slug"] = self.slug
data["release_date"] = self.release_date.date().isoformat()
Expand Down

0 comments on commit 497563f

Please sign in to comment.