diaspora/app/models/poll_answer.rb

18 lines
289 B
Ruby

class PollAnswer < ActiveRecord::Base
include Diaspora::Federated::Base
include Diaspora::Guid
belongs_to :poll
has_many :poll_participations
xml_attr :answer
self.include_root_in_json = false
def update_vote_counter
self.vote_count += 1
self.save!
end
end