blog_perso_app/app/models/dynamic_content.rb
Nicolas Bally ef2a73636b initial 2
2015-02-24 23:47:26 +01:00

14 lines
208 B
Ruby

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