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