Add user account type selection workflow

- Add pending_account_setup field to SimpleFin items
- Enable pausing sync for user account type selection
- Allow users to choose account types during import
- Prevent automatic account creation until user confirms
This commit is contained in:
Sholom Ber
2025-08-07 12:40:27 -04:00
parent 35693e51f0
commit 71d720b25b

View File

@@ -0,0 +1,5 @@
class AddPendingAccountSetupToSimplefinItems < ActiveRecord::Migration[7.2]
def change
add_column :simplefin_items, :pending_account_setup, :boolean, default: false, null: false
end
end