mirror of
https://github.com/wekan/wekan.git
synced 2026-02-19 06:28:06 +01:00
Updated Forgot Password (markdown)
parent
802f92e662
commit
45066b0f5e
1 changed files with 13 additions and 0 deletions
|
|
@ -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
|
||||
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue