ranking_item.rb 255 Bytes
class ProposalsDiscussionPlugin::RankingItem < ActiveRecord::Base

  belongs_to :proposal

  attr_accessible :proposal, :abstract, :votes_for, :votes_against, :hits, :effective_support

  delegate :body, :slug, :categories, :parent, :to => :proposal

end