abritium_app/app/models/testimony.rb
Nicolas Bally 69532530c2 suite
2019-05-30 14:44:41 +02:00

23 lines
319 B
Ruby

# -*- encoding : utf-8 -*-
class Testimony < ActiveRecord::Base
belongs_to :image_file
has_one :block, :as => :blockable
before_create do
self.block = Block.new
end
def alloweds_types
self.block.allow_types :TitleContent, :TextContent, :ImageContent, :LinkContent, :GalleryContent
end
end