feat: add calendar as start page option

This commit is contained in:
Herculino Trotta
2024-10-30 00:27:22 -03:00
parent 63c14f9544
commit fc284d1498
3 changed files with 21 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ class UserSettings(models.Model):
YEARLY = "YEARLY_OVERVIEW", _("Yearly Overview")
NETWORTH = "NETWORTH", _("Net Worth")
ALL_TRANSACTIONS = "ALL_TRANSACTIONS", _("All Transactions")
CALENDAR = "CALENDAR", _("Calendar")
user = models.OneToOneField(
get_user_model(), on_delete=models.CASCADE, related_name="settings"