mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-07-15 15:29:33 +00:00
10 lines
177 B
Python
10 lines
177 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
from .. import utils
|
|
|
|
|
|
class UserQuerysetMixin:
|
|
def get_queryset(self):
|
|
queryset = utils.get_current_org_members()
|
|
return queryset
|