| 37 | } |
| 38 | |
| 39 | type Issue struct { |
| 40 | ID IssueID `json:"id"` |
| 41 | Name string `json:"name"` |
| 42 | Severity severity.Severity `json:"severity"` |
| 43 | Category category.Category `json:"category"` |
| 44 | Tags []tags.Tag `json:"tags,omitempty"` |
| 45 | Description string `json:"description"` |
| 46 | Resources []resource.Resource `json:"resource"` |
| 47 | CWEs []int `json:"cwes,omitempty"` |
| 48 | Remediation string `json:"remediation"` |
| 49 | } |
| 50 | |
| 51 | func Org2FADisabled(org string) Issue { |
| 52 | return Issue{ |
nothing calls this directly
no outgoing calls
no test coverage detected