Files
sure/app/controllers/investments_controller.rb
Duc-Thomas 7e912c1c93 Fix Investment account subtype not saving on creation (#1039)
* Add permitted_accountable_attributes for investments

* Include fields_for for accountable subtype selection
2026-02-23 17:47:49 -05:00

6 lines
136 B
Ruby

class InvestmentsController < ApplicationController
include AccountableResource
permitted_accountable_attributes :id, :subtype
end