1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 13:19:39 +02:00
Maybe/app/controllers/vehicles_controller.rb

8 lines
185 B
Ruby
Raw Normal View History

2024-08-23 09:33:42 -04:00
class VehiclesController < ApplicationController
include AccountableResource
2024-08-23 09:33:42 -04:00
permitted_accountable_attributes(
:id, :make, :model, :year, :mileage_value, :mileage_unit
)
2024-08-23 09:33:42 -04:00
end