Skip to content

Instantly share code, notes, and snippets.

@Toshinaki
Toshinaki / Wagtail FormBuilder + drf.md
Last active January 8, 2025 04:35
create submissions to wagtail forms created with formbuilder, with django rest framework

Thanks to the friendly and detailed advice of @LB from Wagtail community (https://wagtail.io/slack/)

views.py

class FormSubmissionViewSet(mixins.CreateModelMixin, viewsets.GenericViewSet):
    """
    A viewset for viewing and editing contact form submissions.
    """

    serializer_class = FormSubmissionSerializer