diff --git a/jans-cli/cli/config_cli.py b/jans-cli/cli/config_cli.py index e20b990606c..88427c656b1 100755 --- a/jans-cli/cli/config_cli.py +++ b/jans-cli/cli/config_cli.py @@ -303,11 +303,13 @@ def __init__(self, host, client_id, client_secret, access_token, test_client=Fal self.enums() def enums(self): - self.enum_dict = {} - enum_json = Path(os.path.join(cur_dir, 'enums.json')) - if enum_json.is_file(): - self.enum_dict = json.loads(enum_json.read_text()) - + self.enum_dict = { + "CustomAttribute": { + "properties.name": { + "f": "get_attrib_list" + } + } + } def set_user(self): self.auth_username = None diff --git a/jans-cli/cli/enums.json b/jans-cli/cli/enums.json deleted file mode 100644 index 230f73e633e..00000000000 --- a/jans-cli/cli/enums.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "CustomAttribute": { - "properties.name": { - "f": "get_attrib_list" - } - } -} \ No newline at end of file