We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 422152c commit 0d3b8faCopy full SHA for 0d3b8fa
core/concepts/views.py
@@ -183,7 +183,8 @@ def get_queryset(self):
183
if not self.kwargs.get('concept_version'):
184
instance = instance.get_latest_version()
185
186
- return instance.collection_set
+ return instance.collection_set.filter(
187
+ organization_id=instance.parent.organization_id, user_id=instance.parent.user_id)
188
189
def get(self, request, *args, **kwargs):
190
return self.list(request, *args, **kwargs)
0 commit comments