(auth *Auth, routeModel string)
| 1317 | } |
| 1318 | |
| 1319 | func (m *Manager) prepareExecutionModels(auth *Auth, routeModel string) []string { |
| 1320 | models, _ := m.preparedExecutionModels(auth, routeModel) |
| 1321 | return models |
| 1322 | } |
| 1323 | |
| 1324 | func rewriteForceMappedResponse(resp *cliproxyexecutor.Response, aliasResult OAuthModelAliasResult) { |
| 1325 | if resp == nil || !aliasResult.ForceMapping || strings.TrimSpace(aliasResult.OriginalAlias) == "" { |
nothing calls this directly
no test coverage detected