(items []DeclaredNetworkChannelRecord)
| 653 | } |
| 654 | |
| 655 | func bundleDeclaredChannelRows(items []DeclaredNetworkChannelRecord) [][]string { |
| 656 | rows := make([][]string, 0, len(items)) |
| 657 | for _, item := range items { |
| 658 | rows = append(rows, []string{ |
| 659 | stringOrDash(item.ActivationID), |
| 660 | stringOrDash(item.ExtensionName), |
| 661 | stringOrDash(item.BundleName), |
| 662 | stringOrDash(item.ProfileName), |
| 663 | stringOrDash(item.WorkspaceID), |
| 664 | stringOrDash(item.Name), |
| 665 | formatBool(item.Primary), |
| 666 | }) |
| 667 | } |
| 668 | return rows |
| 669 | } |
no test coverage detected