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.
21 lines
373 B
21 lines
373 B
7 years ago
|
# -*- coding: utf-8 -*-
|
||
|
#
|
||
|
from django.core.cache import cache
|
||
|
|
||
|
from .tasks import USERS_CACHE_KEY, ASSETS_CACHE_KEY, SYSTEM_USER_CACHE_KEY
|
||
|
|
||
|
|
||
|
def get_user_list_from_cache():
|
||
|
return cache.get(USERS_CACHE_KEY)
|
||
|
|
||
|
|
||
|
def get_asset_list_from_cache():
|
||
|
return cache.get(ASSETS_CACHE_KEY)
|
||
|
|
||
|
|
||
|
def get_system_user_list_from_cache():
|
||
|
return cache.get(SYSTEM_USER_CACHE_KEY)
|
||
|
|
||
|
|
||
|
|