(guidSlice []string, guid string)
| 136 | } |
| 137 | |
| 138 | func (builder Builder) containsGUID(guidSlice []string, guid string) bool { |
| 139 | for _, g := range guidSlice { |
| 140 | if g == guid { |
| 141 | return true |
| 142 | } |
| 143 | } |
| 144 | return false |
| 145 | } |
| 146 | |
| 147 | func (builder Builder) buildPlanToOrgVisibilityMap(orgName string) (map[string][]string, error) { |
| 148 | org, err := builder.orgRepo.FindByName(orgName) |
no outgoing calls
no test coverage detected