Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/752-align-with-new-…
Browse files Browse the repository at this point in the history
…set-groups-endpoint' into 752-align-with-new-set-groups-endpoint
  • Loading branch information
ychiucco committed Nov 27, 2024
2 parents a541511 + b94ef19 commit 33ec651
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions fractal_client/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -916,8 +916,7 @@
user_set_groups_parser = user_subparsers.add_parser(
"set-groups",
description=(
"Associates an existing user with the indicated groups, "
"and removes them from any groups not indicated."
"Reset user-group membership for an existing user."
),
allow_abbrev=False,
)
Expand All @@ -926,7 +925,10 @@
)
user_set_groups_parser.add_argument(
"group_ids",
help="List of the IDs of groups we want the user to be member.",
help=(
"List of the IDs of groups we want the user to be member. "
"WARNING: this list replaces the current group memberships."
),
type=int,
nargs="+",
)
Expand Down

0 comments on commit 33ec651

Please sign in to comment.