mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
380 B
15 lines
380 B
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
__all__ = ['QuerySetMixin']
|
|
|
|
|
|
class QuerySetMixin:
|
|
def get_queryset(self):
|
|
queryset = super().get_queryset()
|
|
serializer_class = self.get_serializer_class()
|
|
|
|
if serializer_class and hasattr(serializer_class, 'setup_eager_loading'):
|
|
queryset = serializer_class.setup_eager_loading(queryset)
|
|
return queryset
|