Unverified Commit eba8e542 authored by 老广's avatar 老广 Committed by GitHub

Merge pull request #2891 from jumpserver/dev_perms

[Update] 修复Action转化的bug
parents 0d72c4a7 a8c95093
......@@ -52,16 +52,20 @@ class Action:
@classmethod
def choices_to_value(cls, value):
if not value:
if not isinstance(value, list):
return cls.NONE
db_value = [
cls.NAME_MAP_REVERSE[v] for v in value
if v in cls.NAME_MAP_REVERSE.keys()
]
if not db_value:
return cls.NONE
if len(value) == 1:
return cls.NAME_MAP_REVERSE.get(value[0], cls.NONE)
def to_choices(x, y):
x = cls.NAME_MAP_REVERSE.get(x, cls.NONE)
y = cls.NAME_MAP_REVERSE.get(y, cls.NONE)
return x | y
return reduce(to_choices, value)
result = reduce(to_choices, db_value)
return result
@classmethod
def choices(cls):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment