(validationErrors)
| 83 | } |
| 84 | |
| 85 | const validateAzureFields = (validationErrors) => { |
| 86 | if (!azureTenantID) { |
| 87 | validationErrors.push('Azure TenantID cannot be left blank!') |
| 88 | } |
| 89 | if (!azureClientID) { |
| 90 | validationErrors.push('Azure ClientID cannot be left blank!') |
| 91 | } |
| 92 | if (!azureClientSecret) { |
| 93 | validationErrors.push('Azure Client Secret cannot be left blank!') |
| 94 | } |
| 95 | } |
| 96 | const validateGoogleFields = (validationErrors) => { |
| 97 | if (!googleClientID) { |
| 98 | validationErrors.push('Google ClientID cannot be left blank!') |
no outgoing calls
no test coverage detected