1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-02 20:15:22 +02:00

Add accounts management list (#522)

* Add accounts management

* Normalize i18n file

* Get turbo streams working

* Ignore disabled accounts in calculations

* Add empty state
This commit is contained in:
Zach Gollwitzer 2024-03-07 10:55:51 -05:00 committed by GitHub
parent 0e77bab00b
commit ad7136cb63
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 164 additions and 25 deletions

View file

@ -0,0 +1,5 @@
class AddIsActiveToAccount < ActiveRecord::Migration[7.2]
def change
add_column :accounts, :is_active, :boolean, default: true, null: false
end
end