Class: MegaBar::Layable

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/mega_bar/layable.rb

Instance Method Summary collapse

Instance Method Details

#delete_dependentsObject



9
10
11
12
# File 'app/models/mega_bar/layable.rb', line 9

def delete_dependents
 #only destroy layoutsections if no other layables use it.
 LayoutSection.destroy(self.layout_section_id) if Layable.where(layout_section_id: self.layout_section_id).blank?
end