Within my rails app, i'm using the acts_as_votable gem to allow voting on my Post model.
I'm trying to retrieve a list of all posts that the current user has not upvoted or downvoted. How do I do this?
This gives me the list of ids of all users that have voted on a particular post. Do I need to run this method on all posts and scan against the current user and map out the results, or is there a more efficient way to do this?
@post.votes_for_ids