mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 03:54:08 +00:00
Add Account type investment form (#343)
* Add Account type investment form * Move subtypes to Account::Investment * Linting
This commit is contained in:
committed by
GitHub
parent
2ccb52056d
commit
db478e5fbd
@@ -1,3 +1,15 @@
|
||||
class Account::Investment < ApplicationRecord
|
||||
include Accountable
|
||||
|
||||
SUBTYPES = [
|
||||
[ "Brokerage", "brokerage" ],
|
||||
[ "Pension", "pension" ],
|
||||
[ "Retirement", "retirement" ],
|
||||
[ "401(k)", "401k" ],
|
||||
[ "529 plan", "529_plan" ],
|
||||
[ "Health Savings Account", "hsa" ],
|
||||
[ "Mutual Fund", "mutual_fund" ],
|
||||
[ "Roth IRA", "roth_ira" ],
|
||||
[ "Roth 401k", "roth_401k" ]
|
||||
].freeze
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user