fix createUser and modifyUser securityLevel defaults

This commit is contained in:
chris
2020-08-15 00:06:52 -04:00
parent 06deeea14e
commit 0a842c92de
7 changed files with 39 additions and 26 deletions

10
CyberCP/SecurityLevel.py Normal file
View File

@@ -0,0 +1,10 @@
from enum import Enum
class SecurityLevel(Enum):
HIGH = 0
LOW = 1
@staticmethod
def list():
return list(map(lambda s: s.name, SecurityLevel))