Merge "Add a hosts list serializer field for plays"

This commit is contained in:
Zuul 2018-06-25 14:53:23 +00:00 committed by Gerrit Code Review
commit 7eccc65865
1 changed files with 1 additions and 0 deletions

View File

@ -183,6 +183,7 @@ class PlaySerializer(DurationSerializer):
model = models.Play
fields = '__all__'
hosts = HostSerializer(read_only=True, many=True)
results = ResultSerializer(read_only=True, many=True)