Skip to content

Commit

Permalink
apply review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
SalmanAsh committed Jul 16, 2024
1 parent 72a1729 commit 1f2dbfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/serializers/agreement_signature.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ class AgreementSignatureSerializer(ModelSerializer[User, AgreementSignature]):

class Meta:
model = AgreementSignature
fields = "__all__"
fields = ["id", "contributor", "agreement_id", "signed_at"]
2 changes: 1 addition & 1 deletion api/serializers/contributor.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ class ContributorSerializer(ModelSerializer[User, Contributor]):

class Meta:
model = Contributor
fields = "__all__"
fields = ["id", "email", "name", "location", "html_url", "avatar_url"]

0 comments on commit 1f2dbfd

Please sign in to comment.