ballalama3_app/app/models/big_menu_item.rb
Nicolas Bally bc774b8159 initial
2016-12-01 10:54:16 +01:00

21 lines
260 B
Ruby

class BigMenuItem < ActiveRecord::Base
belongs_to :big_menu
belongs_to :cible, :polymorphic => true
accepts_nested_attributes_for :cible
def url
if self.cible
cible.url
else
""
end
end
validates :name, :presence => true
end