(t string)
| 1004 | } |
| 1005 | |
| 1006 | func apiDefaultAuthMethodFor(t string) *string { |
| 1007 | switch apiTypeFor(strings.ToLower(t)) { |
| 1008 | case appTypeNative, appTypeSPA: |
| 1009 | return auth0.String("none") |
| 1010 | default: |
| 1011 | return nil |
| 1012 | } |
| 1013 | } |
| 1014 | |
| 1015 | func apiGrantsFor(s []string) *[]string { |
| 1016 | res := make([]string, len(s)) |
no test coverage detected