pmr_app/app/models/dynamic_content.rb
Nicolas Bally 428372d6f9 initial
2016-02-08 10:27:25 +01:00

14 lines
248 B
Ruby

# -*- encoding : utf-8 -*-
class DynamicContent < ActiveRecord::Base
has_one :portlet, :as => :content, :dependent => :destroy
belongs_to :item
NAMES = {"historique_monde" => "Historique monde"}
def self.picto
"cog"
end
end