bouchard / thumbs_up

Dead-Simple Vote and Karma Management

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How would I add another piece of data to the vote?

CiaranPearse opened this issue · comments

Lets say when a user votes it also saves another piece of data (lets say longitude from geolocation).

Would this be possible so that along with the vote & voter etc the longitude of the voter would be recorded? This way I would be able to easily query all votes made when the user was at a certain location.

Yup, for sure, but you'd have to add that functionality.

Add a new column to the Vote table geo, perhaps, and then change the vote method in acts_as_voter.rb to receive and attach the geo coordinates to the model before saving. Feel free to fork to accomplish that, should be ~5 lines of code.