()
| 27 | } |
| 28 | |
| 29 | func (req *organizationAPIRequirement) Execute() error { |
| 30 | var apiErr error |
| 31 | req.org, apiErr = req.orgRepo.FindByName(req.name) |
| 32 | |
| 33 | if apiErr != nil { |
| 34 | return apiErr |
| 35 | } |
| 36 | |
| 37 | return nil |
| 38 | } |
| 39 | |
| 40 | func (req *organizationAPIRequirement) SetOrganizationName(name string) { |
| 41 | req.name = name |
nothing calls this directly
no test coverage detected