Skip to content

Commit

Permalink
Adjust Group Get Default Columns
Browse files Browse the repository at this point in the history
  • Loading branch information
speatzle committed Jan 21, 2022
1 parent 138c8ae commit 0e991f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion group/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var GroupGetCmd = &cobra.Command{
func init() {
GroupGetCmd.Flags().String("id", "", "id of Group to Get")

GroupGetCmd.Flags().StringArrayP("column", "c", []string{"UserID", "IsGroupManager"}, "Membership Columns to return, possible Columns:\nUserID, Username, UserFirstName, UserLastName, IsGroupManager")
GroupGetCmd.Flags().StringArrayP("column", "c", []string{"UserID", "Username", "UserFirstName", "UserLastName", "IsGroupManager"}, "Membership Columns to return, possible Columns:\nUserID, Username, UserFirstName, UserLastName, IsGroupManager")

GroupGetCmd.MarkFlagRequired("id")
}
Expand Down

0 comments on commit 0e991f3

Please sign in to comment.