MismatchedTotal returns the total number of links with a non-matching issuer.
()
| 25 | |
| 26 | // MismatchedTotal returns the total number of links with a non-matching issuer. |
| 27 | func (a OIDCLinkAnalysis) MismatchedTotal() int { |
| 28 | total := 0 |
| 29 | for _, count := range a.MismatchedCounts { |
| 30 | total += count |
| 31 | } |
| 32 | return total |
| 33 | } |
| 34 | |
| 35 | // AnalyzeOIDCLinks queries OIDC user links grouped by issuer prefix and |
| 36 | // categorizes them relative to expectedIssuer. |
no outgoing calls