I have a tastypie resources:
class UserResource(ModelResource):
class Meta:
queryset = User.objects.all()
resource_name = 'user'
fields = ['username', 'first_name', 'last_name', 'last_login']
class EntryResource(ModelResource):
user = fields.ForeignKey(UserResource, 'user')
class Meta:
queryset = Entry.objects.all()
resource_name = 'entry'
In order to remove fields from output I can either blacklist them with exculdes, or to whitelist them using fields.
Now, I would like to remove UserResource fields from EntryResource using whitelist. Is is possible to do in EntryResource something like
fields = ['user.first_name', 'user.last_name']
It does not work, but maybe there is some other convention/syntax to do that?