Merge pull request #2324 from selfhoster1312/user_group_docs

Fix docs for `yunohost user group update` command which no longer exists
This commit is contained in:
Alexandre Aubin 2023-09-01 18:06:41 +02:00 committed by GitHub
commit ed1071e59e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View file

@ -87,10 +87,10 @@ Pour supprimer un utilisateur, cliquez sur la croix à côté de son nom d'utili
En ligne de commande, utilisez la commande suivante pour ajouter `charlie` et `delphine` au groupe `yolo_crew` : En ligne de commande, utilisez la commande suivante pour ajouter `charlie` et `delphine` au groupe `yolo_crew` :
```shell ```shell
$ yunohost user group update yolo_crew --add charlie delphine $ yunohost user group add yolo_crew charlie delphine
``` ```
(De même, `--remove` peut être utilisé pour retirer des membres d'un groupe.) (De même, `remove` peut être utilisé pour retirer des membres d'un groupe.)
Dans la liste des groupes, nous devrions voir : Dans la liste des groupes, nous devrions voir :
@ -260,4 +260,4 @@ $ yunohost user group info admins
Il est possible de les ajouter avec l'action `add-mailalias` ou de les enlever avec `remove-mailalias`. Il est possible de les ajouter avec l'action `add-mailalias` ou de les enlever avec `remove-mailalias`.
```shell ```shell
$ yunohost user group add-mailalias <groupe> <adresse@domaine.tld> $ yunohost user group add-mailalias <groupe> <adresse@domaine.tld>
``` ```

View file

@ -90,10 +90,10 @@ To remove a user, click on the cross next to their username, in the group panel.
In CLI, use the following command to add `charlie` and `delphine`to the `yolo_crew` group: In CLI, use the following command to add `charlie` and `delphine`to the `yolo_crew` group:
```shell ```shell
$ yunohost user group update yolo_crew --add charlie delphine $ yunohost user group add yolo_crew charlie delphine
``` ```
(similarly, `--remove` can be used to remove members from a group) (similarly, `remove` can be used to remove members from a group)
Now in the group list we should see: Now in the group list we should see:
@ -260,4 +260,4 @@ $ yunohost user group info admins
To add a new mail, use the action `add-mailalias` or `remove-mailalias` to delete it. To add a new mail, use the action `add-mailalias` or `remove-mailalias` to delete it.
```shell ```shell
$ yunohost user group add-mailalias <group> <address@domaine.tld> $ yunohost user group add-mailalias <group> <address@domaine.tld>
``` ```