Skip to content

Commit

Permalink
💳 Footnotes API UUID (#203)
Browse files Browse the repository at this point in the history
# FootnotesAPIModel
Use `UUID` type in `FootnotesAPIModel`

Closes #200
  • Loading branch information
mrharpo authored Sep 9, 2024
1 parent 776127b commit d2886ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ov_wag/serializers.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from pydantic import BaseModel
from rest_framework.fields import Field
from wagtail.templatetags import wagtailcore_tags
from uuid import UUID


class FootnoteAPIModel(BaseModel):
id: int
uuid: str
uuid: UUID
text: str


Expand Down

0 comments on commit d2886ae

Please sign in to comment.