Nicolas Bally 1fa250e0e4 Initial
2011-07-15 12:29:09 +02:00

7 lines
233 B
Ruby

class Comment < ActiveRecord::Base
belongs_to :commentable, :polymorphic => true
scope :enableds, where("enabled = ?",true ).order("created_at DESC")
validates :pseudo, :presence => true
validates :content, :presence => true
end