()
| 364 | } |
| 365 | |
| 366 | func exportCurrentMembers() { |
| 367 | if members == nil { |
| 368 | updateLog("An object was not queried yet", "red") |
| 369 | return |
| 370 | } |
| 371 | |
| 372 | exportMap := make(map[string]any) |
| 373 | exportMap["Members"] = members |
| 374 | exportMap["DN"] = groupDN |
| 375 | exportMap["Query"] = queryGroup |
| 376 | exportMap["MaxDepth"] = maxDepth |
| 377 | |
| 378 | writeDataExport(exportMap, "members", "group_members") |
| 379 | } |
| 380 | |
| 381 | func groupsKeyHandler(event *tcell.EventKey) *tcell.EventKey { |
| 382 | row, col := groupsPanel.GetSelection() |
no test coverage detected