(groups []codersdk.Group)
| 602 | } |
| 603 | |
| 604 | func normalizeAllGroups(groups []codersdk.Group) { |
| 605 | for i := range groups { |
| 606 | normalizeGroupMembers(&groups[i]) |
| 607 | } |
| 608 | } |
| 609 | |
| 610 | // normalizeGroupMembers removes comparison noise from the group members. |
| 611 | func normalizeGroupMembers(group *codersdk.Group) { |
no test coverage detected