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

16 lines
254 B
Ruby

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