| 68 | ) |
| 69 | |
| 70 | type LoginInputs struct { |
| 71 | Domain string |
| 72 | ClientID string |
| 73 | ClientSecret string |
| 74 | ClientAssertionPrivateKey string |
| 75 | ClientAssertionSigningAlg string |
| 76 | AdditionalScopes []string |
| 77 | } |
| 78 | |
| 79 | func (i *LoginInputs) isLoggingInWithAdditionalScopes() bool { |
| 80 | return len(i.AdditionalScopes) > 0 |
nothing calls this directly
no outgoing calls
no test coverage detected