mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-01-19 09:45:28 +01:00
Fix user import issues
This commit is contained in:
parent
0ffe6801d8
commit
4019f0365e
@ -38,9 +38,12 @@ class Import3:
|
|||||||
# If there is only one user to import json needs to call the data differently
|
# If there is only one user to import json needs to call the data differently
|
||||||
if isinstance(json_data, list):
|
if isinstance(json_data, list):
|
||||||
for user in json_data:
|
for user in json_data:
|
||||||
|
if not str(user["username"]).lower() == "admin":
|
||||||
HelperUsers.add_rawpass_user(user["username"], user["password"])
|
HelperUsers.add_rawpass_user(user["username"], user["password"])
|
||||||
Console.info(f"Imported user {user['username']} from Crafty 3")
|
Console.info(f"Imported user {user['username']} from Crafty 3")
|
||||||
logger.info(f"Imported user {user['username']} from Crafty 3")
|
logger.info(f"Imported user {user['username']} from Crafty 3")
|
||||||
|
else:
|
||||||
|
logger.info("Cannot create duplicate Admin account...skipping.")
|
||||||
else:
|
else:
|
||||||
Console.info(
|
Console.info(
|
||||||
"There is only one user detected. "
|
"There is only one user detected. "
|
||||||
|
Loading…
x
Reference in New Issue
Block a user