has_moderated
has_moderated copied to clipboard
Rails 3.x gem for moderating ActiveRecord models (like posts, attributes...).
Results
11
has_moderated issues
Sort by
recently updated
recently updated
newest added
These are my models: ``` class Deal < ActiveRecord::Base has_many :pictures, :as => :imageable, :dependent => :destroy has_moderated :title, :excerpt, :description, :conditions, :associations => [ :pictures ] end class Picture...