Fixed an issue in the help message for listGroupsCommand

This commit is contained in:
david-harley 2021-01-11 16:07:23 +10:30
parent df82c39e8d
commit f4df26de7b

View file

@ -66,7 +66,7 @@ public class ListGroupsCommand implements LocalCommand {
@Override
public void attachToSubparser(final Subparser subparser) {
subparser.addArgument("-d", "--detailed").action(Arguments.storeTrue())
.help("List the members and group invite links of each group");
.help("List the members and group invite links of each group. If output=json, then this is always set");
subparser.help("List group information including names, ids, active status, blocked status and members");
}