(parameters []ExecutionParameter)
| 45 | } |
| 46 | |
| 47 | func (e PluginExecutor) convertToPluginParameters(parameters []ExecutionParameter) []plugin.ExecutionParameter { |
| 48 | result := []plugin.ExecutionParameter{} |
| 49 | for _, parameter := range parameters { |
| 50 | param := plugin.NewExecutionParameter(parameter.Name, parameter.Value) |
| 51 | result = append(result, *param) |
| 52 | } |
| 53 | return result |
| 54 | } |
| 55 | |
| 56 | func (e PluginExecutor) pluginAuth(auth *auth.AuthenticatorResult) plugin.AuthResult { |
| 57 | return plugin.AuthResult{ |
no test coverage detected