feat: add All Transactions as valid start page

This commit is contained in:
Herculino Trotta
2024-10-27 21:54:35 -03:00
parent 0a5d93027e
commit 55e2064da2

View File

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