Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. if request.user.is_active:
  2. query = {
  3. 'fields': fields,
  4. 'query': query_
  5. }
  6. else:
  7. query = {
  8. 'fields': fields,
  9. 'query': query_,
  10. 'filter': {
  11. 'bool': {
  12. 'must': {
  13. 'term': {"privacy": Event.PRIVACY_PUBLIC}
  14. }
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement