This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
phone_app/app/models/menu_item_link_content.rb
2021-08-23 10:26:02 +02:00

22 lines
417 B
Ruby

class MenuItemLinkContent < ApplicationRecord
belongs_to :menu_item
belongs_to :image_file
has_one :portlet, :as => :content, :dependent => :destroy
belongs_to :cible, :polymorphic => true
accepts_nested_attributes_for :cible
STYLES = [["normal"], ["combat du mois"], ["Bandeaux de titre"]]
def ratio
if self.proportion?
self.proportion
else
0.62
end
end
end