Update modules/database.py
Browse files- modules/database.py +1 -1
modules/database.py
CHANGED
@@ -78,7 +78,7 @@ def create_admin_user(username, password):
|
|
78 |
'id': username,
|
79 |
'password': hashed_password,
|
80 |
'is_invited': False,
|
81 |
-
'role': '
|
82 |
'created_at': datetime.utcnow().isoformat()
|
83 |
}
|
84 |
user_container.create_item(body=user_data)
|
|
|
78 |
'id': username,
|
79 |
'password': hashed_password,
|
80 |
'is_invited': False,
|
81 |
+
'role': 'Administrador',
|
82 |
'created_at': datetime.utcnow().isoformat()
|
83 |
}
|
84 |
user_container.create_item(body=user_data)
|