Nicolas Bally 56a0aa9848 initial
2012-06-17 21:11:12 +02:00

17 lines
306 B
Ruby

# -*- encoding : utf-8 -*-
class Comment < ActiveRecord::Base
include ActsAsCommentable::Comment
belongs_to :commentable, :polymorphic => true
validates :pseudo, :presence => true
validates :comment, :presence => true
scope :recents, where("enabled = ?",true ).order("created_at DESC")
end