This commit is contained in:
Lauri Ojansivu 2024-12-24 20:16:31 +02:00
parent e45d35ba60
commit b9182a1fc7
10 changed files with 17 additions and 17 deletions

View file

@ -48,7 +48,7 @@ db.users.find()
```
Set some user as admin:
```
db.users.update({username:'admin-username-here'},{$set:{isAdmin:true}})
db.users.updateOne({username:'admin-username-here'},{$set:{isAdmin:true}})
```
Check are there any failed logins with wrong password, that brute force login prevention has denied login:
```