gravier_app/app/models/quote_content.rb
2017-09-21 12:37:53 +02: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