diff --git a/wagtailbirdsong/models.py b/wagtailbirdsong/models.py index a84c93b..f19b285 100644 --- a/wagtailbirdsong/models.py +++ b/wagtailbirdsong/models.py @@ -24,6 +24,8 @@ class BaseEmail(models.Model): abstract = True +# TODO: Flesh out what else our Contacts need to store +# TODO: Make Contact overrideable by consuming application (ala get_backend maybe?) class Contact(models.Model): first_name = models.TextField() email = models.EmailField()