(validationErrors)
| 103 | } |
| 104 | |
| 105 | const validateGithubFields = (validationErrors) => { |
| 106 | if (!githubClientID) { |
| 107 | validationErrors.push('Github ClientID cannot be left blank!') |
| 108 | } |
| 109 | if (!githubClientSecret) { |
| 110 | validationErrors.push('Github Client Secret cannot be left blank!') |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | const validateAuth0Fields = (validationErrors) => { |
| 115 | if (!auth0Domain) { |
no outgoing calls
no test coverage detected