Skip to content

Commit

Permalink
♻️Refactor : serializer 오타 수정 #3
Browse files Browse the repository at this point in the history
- field -> fields로 수정
  • Loading branch information
simseulnyang committed Nov 10, 2023
1 parent f652321 commit af1d5c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion budget_management/users/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class UserSerializer(serializers.ModelSerializer):
class Meta:
model = User
field = ("username", "created_at", "updated_at")
fields = ("username", "created_at", "updated_at")


class UserSignupSerializer(serializers.ModelSerializer):
Expand Down

0 comments on commit af1d5c5

Please sign in to comment.