activeadmin: adding delete for a nested resource

前端 未结 6 1914
我在风中等你
我在风中等你 2021-02-12 10:42

I have a infrastructure object composed for many datacenters. In the apps/admin/infrastructures.rb I have the following code:

form do |f|
  f.inputs \"Infrastruc         


        
6条回答
  •  暖寄归人
    2021-02-12 11:05

    Don't forget to add the following to your parent model

    has_many :child_name, :dependent => :destroy
    

提交回复
热议问题