Updated Forgot Password (markdown)

Lauri Ojansivu 2022-09-07 17:33:14 +03:00
parent 802f92e662
commit 45066b0f5e

@ -69,6 +69,19 @@ Then login to Wekan and change any users passwords at `Admin Panel / People / Pe
- https://github.com/wekan/wekan/wiki/Backup#dbgate-open-source-mongodb-gui
- https://github.com/wekan/wekan/wiki/Forgot-Password
## Set user as BoardAdmin on all boards user is member of
[Source](https://github.com/wekan/wekan/issues/2413#issuecomment-1239249563)
```
db.boards.updateMany(
{ members: { $elemMatch: { userId: “USER-ID-HERE”, isAdmin: false } } },
{
$set: { “members.$.isAdmin”: true },
}
);
```
## Docker
```