vita_app/app/models/html_content.rb
Nicolas Bally 1d3af87d4c initial
2016-04-28 10:07:08 +02:00

12 lines
240 B
Ruby
Executable File

# -*- encoding : utf-8 -*-
class HtmlContent < ActiveRecord::Base
has_one :portlet, :as => :content, :dependent => :destroy
STYLES = []#[["Style 1",1], ["Style 2",2]]
CONTENT_TYPES = ["html"]
def self.picto
"code"
end
end