diff options
author | luxagraf <sng@luxagraf.net> | 2023-12-20 13:00:52 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-12-20 13:00:52 -0500 |
commit | 0a03a56a8c4de51bb40d9fb42800c8a2411c696a (patch) | |
tree | baed687960f1f235b06c816bec7dc4e6acf24541 /app/gtd | |
parent | 106e009531d400e28382739f318e71ba0e83e2c6 (diff) |
re-arranged main menu
Diffstat (limited to 'app/gtd')
-rw-r--r-- | app/gtd/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/gtd/models.py b/app/gtd/models.py index 35069bf..cf0d086 100644 --- a/app/gtd/models.py +++ b/app/gtd/models.py @@ -149,6 +149,7 @@ class PostStatus(models.IntegerChoices): TURNEDIN = 1, ('turned in') PUBLISHED = 2, ('published') + class WiredPost(models.Model): # an entry in a feed title = models.CharField(max_length=512, blank=True, null=True) |