@@ -80,6 +80,10 @@ func runCommand(parsed string, commandData *commands.CommandData) {
8080 commandData .EditFile (* fileEditID )
8181
8282 // -- Attributes commands
83+ // List Tags
84+ case tagListCmd .FullCommand ():
85+ commandData .ListAttributes (libdm .TagAttribute )
86+
8387 // Update tag
8488 case tagUpdateCmd .FullCommand ():
8589 commands .UpdateAttribute (commandData , libdm .TagAttribute , * tagUpdateName , * tagUpdateNewName )
@@ -88,6 +92,10 @@ func runCommand(parsed string, commandData *commands.CommandData) {
8892 case tagDeleteCmd .FullCommand ():
8993 commands .DeleteAttribute (commandData , libdm .TagAttribute , * tagDeleteName )
9094
95+ // List Groups
96+ case groupListCmd .FullCommand ():
97+ commandData .ListAttributes (libdm .GroupAttribute )
98+
9199 // Update group
92100 case groupUpdateCmd .FullCommand ():
93101 commands .UpdateAttribute (commandData , libdm .GroupAttribute , * groupUpdateName , * groupUpdateNewName )
@@ -171,6 +179,7 @@ func runCommand(parsed string, commandData *commands.CommandData) {
171179 case keystoreAddKeyCmd .FullCommand ():
172180 commands .KeystoreAddKey (commandData , * keystoreAddKeyCmdKey , * keystoreAddKeyCmdFileID )
173181
182+ // Remove key from keystore
174183 case keystoreRemoveKeyCmd .FullCommand ():
175184 commands .KeystoreRemoveKey (commandData , * keystoreRemoveKeyCmdID )
176185
0 commit comments