From 17697dc5651150e64b16091d06c5f7e1327d97d7 Mon Sep 17 00:00:00 2001 From: Herculino Trotta Date: Sun, 9 Mar 2025 01:26:42 -0300 Subject: [PATCH] fix(rules): unable to save --- app/apps/rules/forms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/apps/rules/forms.py b/app/apps/rules/forms.py index 63fa554..7067490 100644 --- a/app/apps/rules/forms.py +++ b/app/apps/rules/forms.py @@ -16,6 +16,7 @@ class TransactionRuleForm(forms.ModelForm): class Meta: model = TransactionRule fields = "__all__" + exclude = ("owner", "shared_with", "visibility") labels = { "on_create": _("Run on creation"), "on_update": _("Run on update"),