I have a resource in which I'm trying to expose its' votes.
class ViewPostResource(ModelResource):
user = fields.ForeignKey(UserResource,'user',full=True)
votes = fields.ToOneField('voting.resources.GetVotesResource', attribute='vote_set', full=True)
class Meta:
queryset = UserPost.objects.all()
resource_name = 'posts'
include_resource_uri = False
class GetVotesResource(ModelResource):
user = fields.ForeignKey(UserResource,'user', full=True)
class Meta:
queryset = Vote.objects.all()
resource_name = 'vote'
My vote model is a bit different-than-normal though. How would I expose a post's votes with the following model setup?
class Vote(models.Model):
user = models.OneToOneField(User, related_name='vote')
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
object = generic.GenericForeignKey('content_type', 'object_id')
vote = models.SmallIntegerField(choices=SCORES)
