Skip to content

Commit

Permalink
Merge pull request #267 from ant-media/update_faq
Browse files Browse the repository at this point in the history
Update faq.md
  • Loading branch information
yashtandon113 committed May 2, 2024
2 parents 3be2a78 + 6b9a2e0 commit d520e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ If you're using ```mongodb``` as the database, your password will be stored in t
* Type ```use serverdb;```
* Type ```db.User.find()``` and it shows you the output like below. ```{ "_id" : ObjectId("5ea486690f09e71c2462385a"), "className" : "io.antmedia.rest.model.User", "email" : "test@antmedia.io", "password" : "1234567", "userType" : "ADMIN" }```
* You can update the password with a command something like below. Change the parameters below according to the your case. ```db.User.updateOne( { email:"test@antmedia.io" }, { $set: { "password" : "test123" }})```
* Alternatively, you can delete the user with a command something like below. Change the parameters below according to the your case. ```db.User.deleteOne( { "email": "test@antmedia.io" } )```
* Alternatively, you can delete the user with a command something like below. Change the parameters below according to the your case. ```db.user.deleteOne( { "email": "test@antmedia.io" } )```
* As of version 2.3.2, passwords should be hashed with MD5.

## What is HLS?
Expand Down

0 comments on commit d520e0b

Please sign in to comment.