diff --git a/docs/User_documentation_en.md b/docs/User_documentation_en.md index f68d87fe6..876b95f02 100644 --- a/docs/User_documentation_en.md +++ b/docs/User_documentation_en.md @@ -162,19 +162,19 @@ Other text tokens will be used to perform a case-insensitive search on the card In addition, quotes can be used to pass a query with spaces, e.g. `"Exact match with spaces"` or `title:"My card"`. ### 8. New owner for the deck entities -You can transfer ownership of boards, cards, etc to a new user, using `occ` command `deck:transfer-ownership` +You can transfer ownership of boards, cards, etc to a new user, using `occ` command `deck:transfer-ownership` ```bash -php occ deck:transfer-ownership owner newOwner +php occ deck:transfer-ownership previousOwner newOwner ``` The transfer will preserve card details linked to the old owner, which can also be remapped by using the `--remap` option on the occ command. ```bash -php occ deck:transfer-ownership --remap owner newOwner +php occ deck:transfer-ownership --remap previousOwner newOwner ``` Individual boards can be transferred by adding the id of the board to the command: ```bash -php occ deck:transfer-ownership owner newOwner 123 +php occ deck:transfer-ownership previousOwner newOwner 123 ```