Files
sure/app/models/account/vehicle.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
106 B
Ruby

class Account::Vehicle < ApplicationRecord
include Accountable
def type_name
"Vehicle"
end
end