10 lines
314 B
Python
10 lines
314 B
Python
class WorkspaceQuerysetMixin:
|
|
workspace_lookup_url_kwarg = "workspace_id"
|
|
|
|
def get_workspace(self):
|
|
return self.kwargs[self.workspace_lookup_url_kwarg]
|
|
|
|
def get_queryset(self):
|
|
queryset = super().get_queryset()
|
|
return queryset.filter(workspace_id=self.get_workspace())
|