Nicolas Bally 7d852277ae initial
2015-04-09 22:18:02 +02:00

17 lines
311 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