Files
sure/app/models/account/investment.rb
Rob Zolkos a2b96db75d Remove styling configuration for account types out (#284)
* Remve styling configuration for account types out

* No need to tailwind config for models
2024-02-03 14:38:52 -06:00

8 lines
113 B
Ruby

class Account::Investment < ApplicationRecord
include Accountable
def type_name
"Investments"
end
end