fix list folder command

This commit is contained in:
Samuel Lorch 2021-09-10 08:45:26 +02:00
parent 4afe0bec87
commit 19f6fb3b0e

View file

@ -22,7 +22,8 @@ var FolderListCmd = &cobra.Command{
}
func init() {
FolderListCmd.Flags().StringP("search", "s", "", "Folders that have this in the name")
FolderListCmd.Flags().StringP("search", "s", "", "Folders that have this in the Name")
FolderListCmd.Flags().StringArrayP("folder", "f", []string{}, "Folders that are in this Folder")
FolderListCmd.Flags().StringArrayP("group", "g", []string{}, "Folders that are shared with group")
FolderListCmd.Flags().StringArrayP("columns", "c", []string{"ID", "FolderParentID", "Name"}, "Columns to return, possible Columns:\nID, FolderParentID, Name")
}