mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-26 00:05:34 -04:00
Add create command to keepassxc-cli (#2540)
* Add tests for CLI::Create
This commit is contained in:
parent
a070f1bce7
commit
8ac9d0a131
7 changed files with 295 additions and 2 deletions
|
@ -24,6 +24,7 @@
|
|||
|
||||
#include "Add.h"
|
||||
#include "Clip.h"
|
||||
#include "Create.h"
|
||||
#include "Diceware.h"
|
||||
#include "Edit.h"
|
||||
#include "Estimate.h"
|
||||
|
@ -69,6 +70,7 @@ void populateCommands()
|
|||
if (commands.isEmpty()) {
|
||||
commands.insert(QString("add"), new Add());
|
||||
commands.insert(QString("clip"), new Clip());
|
||||
commands.insert(QString("create"), new Create());
|
||||
commands.insert(QString("diceware"), new Diceware());
|
||||
commands.insert(QString("edit"), new Edit());
|
||||
commands.insert(QString("estimate"), new Estimate());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue