mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 12:04:08 +00:00
* Remve styling configuration for account types out * No need to tailwind config for models
8 lines
113 B
Ruby
8 lines
113 B
Ruby
class Account::Investment < ApplicationRecord
|
|
include Accountable
|
|
|
|
def type_name
|
|
"Investments"
|
|
end
|
|
end
|