Changes between Initial Version and Version 1 of Ticket #29885, comment 11
- Timestamp:
- 10/08/2014 12:48:21 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29885, comment 11
initial v1 3 3 > 4 4 > The only problem I can see is the lack of `user_id__not_in` which would also break the convention with `user_id`. 5 6 The problem with `author_email` is I want to do exactly opposite of what it does. For example, your patch adds `post_author__not_in` which, if passed a single int id, does the exact opposite of using `post_author`. I'm looking for the ability to get comments that are not written by a specific person, so we'd probably need a `comment_author__in` and `comment_author__not_in`. 7 8 Does that make sense?