(id string)
| 684 | } |
| 685 | |
| 686 | func formatAPISettingsPath(id string) string { |
| 687 | if len(id) == 0 { |
| 688 | return "" |
| 689 | } |
| 690 | return fmt.Sprintf("apis/%s/settings", id) |
| 691 | } |
| 692 | |
| 693 | func apiScopesFor(scopes []string) *[]management.ResourceServerScope { |
| 694 | models := make([]management.ResourceServerScope, 0) |
no outgoing calls
no test coverage detected