(auth *Auth, routeModel string)
| 1197 | } |
| 1198 | |
| 1199 | func (m *Manager) preparedExecutionModels(auth *Auth, routeModel string) ([]string, bool) { |
| 1200 | candidates := m.executionModelCandidates(auth, routeModel) |
| 1201 | pooled := len(candidates) > 1 |
| 1202 | return m.filterExecutionModels(auth, routeModel, candidates, pooled), pooled |
| 1203 | } |
| 1204 | |
| 1205 | func (m *Manager) preparedExecutionModelsWithAlias(auth *Auth, routeModel string) ([]string, bool, OAuthModelAliasResult) { |
| 1206 | candidates, pooled, aliasResult := m.executionModelCandidatesWithAlias(auth, routeModel) |
no test coverage detected