Skip to content

Commit

Permalink
fix(api): Solved merge conflicts after updating branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
albertisfu committed May 14, 2024
1 parent 2ed601e commit 2650a4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cl/search/api_serializers.py
Expand Up @@ -617,8 +617,8 @@ class Meta:
class PersonESResultSerializer(DocumentSerializer):
"""The serializer for Person Search results."""

dob = DateField(read_only=True)
dod = DateField(read_only=True)
dob = CoerceDateField(read_only=True)
dod = CoerceDateField(read_only=True)
date_created = serializers.DateTimeField(
read_only=True, default_timezone=timezone.utc
)
Expand Down
2 changes: 1 addition & 1 deletion cl/search/api_views.py
Expand Up @@ -22,8 +22,8 @@
OpinionsCitedSerializer,
OpinionSerializer,
OriginalCourtInformationSerializer,
RECAPDocumentSerializer,
PersonESResultSerializer,
RECAPDocumentSerializer,
RECAPESResultSerializer,
SearchResultSerializer,
TagSerializer,
Expand Down

0 comments on commit 2650a4a

Please sign in to comment.