From 00f37caf503beffbeddfd627f473ba6888d7a49b Mon Sep 17 00:00:00 2001 From: Jonny Scholes Date: Thu, 16 Apr 2020 17:48:53 +1000 Subject: [PATCH] Add some TODOs --- wagtailbirdsong/models.py | 2 ++ 1 file changed, 2 insertions(+) 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()