(err api.HTTPError)
| 182 | } |
| 183 | |
| 184 | func isLabelAlreadyExistsError(err api.HTTPError) bool { |
| 185 | return err.StatusCode == 422 && len(err.Errors) == 1 && err.Errors[0].Field == "name" && err.Errors[0].Code == "already_exists" |
| 186 | } |
no outgoing calls
no test coverage detected