| 31 | } |
| 32 | |
| 33 | std::vector<String> PKINewCertCommand::GetArgumentSuggestions(const String& argument, const String& word) const |
| 34 | { |
| 35 | if (argument == "key" || argument == "csr" || argument == "cert") |
| 36 | return GetBashCompletionSuggestions("file", word); |
| 37 | else |
| 38 | return CLICommand::GetArgumentSuggestions(argument, word); |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * The entry point for the "pki new-cert" CLI command. |
nothing calls this directly
no outgoing calls
no test coverage detected