功能变化: 过滤系统初始化配置优化
parent
408c89c7d3
commit
bf6bc71b95
|
@ -256,10 +256,11 @@ class InitSettingsViewSet(APIView):
|
||||||
:param data:
|
:param data:
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
|
new_data = {}
|
||||||
for key in self.request.query_params.get('key', '').split('|'):
|
for key in self.request.query_params.get('key', '').split('|'):
|
||||||
if key:
|
if key:
|
||||||
data = dict(filter(lambda x: x[0].startswith(key), data.items()))
|
new_data.update(**dict(filter(lambda x: x[0].startswith(key), data.items())))
|
||||||
return data
|
return new_data
|
||||||
|
|
||||||
def get(self, request):
|
def get(self, request):
|
||||||
data = dispatch.get_system_config()
|
data = dispatch.get_system_config()
|
||||||
|
|
Loading…
Reference in New Issue