mirror of
https://github.com/bitwarden/cli
synced 2025-12-26 04:53:15 +00:00
serve command (#451)
This commit is contained in:
@@ -346,7 +346,7 @@ export class VaultProgram extends Program {
|
||||
|
||||
await this.exitIfLocked();
|
||||
const command = new RestoreCommand(this.main.cipherService);
|
||||
const response = await command.run(object, id, cmd);
|
||||
const response = await command.run(object, id);
|
||||
this.processResponse(response);
|
||||
});
|
||||
}
|
||||
@@ -383,7 +383,7 @@ export class VaultProgram extends Program {
|
||||
.action(async (id, organizationId, encodedJson, cmd) => {
|
||||
await this.exitIfLocked();
|
||||
const command = new ShareCommand(this.main.cipherService);
|
||||
const response = await command.run(id, organizationId, encodedJson, cmd);
|
||||
const response = await command.run(id, organizationId, encodedJson);
|
||||
this.processResponse(response);
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user