Explorar el Código

fixes bug in get_all() filtering content

root hace 10 años
padre
commit
a4698e009c
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      tracim/tracim/lib/content.py

+ 2 - 2
tracim/tracim/lib/content.py Ver fichero

@@ -199,10 +199,10 @@ class ContentApi(object):
199 199
         resultset = self._base_query(workspace)
200 200
 
201 201
         if content_type!=ContentType.Any:
202
-            resultset.filter(Content.type==content_type)
202
+            resultset = resultset.filter(Content.type==content_type)
203 203
 
204 204
         if parent_id:
205
-            resultset.filter(Content.parent_id==parent_id)
205
+            resultset = resultset.filter(Content.parent_id==parent_id)
206 206
 
207 207
         return resultset.all()
208 208