I had a simple question on filtering in tastypie.
I want to filter with multiple values. For example:
/api/v1/message/?accountId=1,5,12
You must declare the filtering columns in class Meta. This is a security by obscurity rule.
So, the accountId__in=[..] rule is one of these.
``` filtering = { 'accountId' : ALL } OR filtering = { 'accountId' : [ ..., 'in' ] }
```