Recurring fixes (#454)

* Fix record violation

and add toggle for recurring feature

* Run only once per sync cycle ( 30 sec )

* FIX params passing

* Add collapsible to recurring section

* FIX preferences error catch
This commit is contained in:
soky srm
2025-12-17 16:03:05 +01:00
committed by GitHub
parent 7d5b0c425c
commit 0300bf9c24
16 changed files with 403 additions and 110 deletions

View File

@@ -0,0 +1,5 @@
class AddRecurringTransactionsDisabledToFamilies < ActiveRecord::Migration[7.2]
def change
add_column :families, :recurring_transactions_disabled, :boolean, default: false, null: false
end
end