(s string)
| 347 | } |
| 348 | |
| 349 | func defaultURLFor(s string) string { |
| 350 | switch strings.ToLower(s) { |
| 351 | case "angular": // See https://github.com/auth0-samples/auth0-angular-samples/issues/225#issuecomment-806448893 |
| 352 | return defaultURL(qsDefaultURL, 4200) |
| 353 | default: |
| 354 | return defaultURL(qsDefaultURL, qspDefaultPort) |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | func defaultCallbackURLFor(s string) string { |
| 359 | switch strings.ToLower(s) { |
no test coverage detected