mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
Getting the WebVault url before returning the send on cli's remove password command (#7382)
This commit is contained in:
@@ -297,7 +297,11 @@ export class SendProgram extends Program {
|
||||
})
|
||||
.action(async (id: string) => {
|
||||
await this.exitIfLocked();
|
||||
const cmd = new SendRemovePasswordCommand(this.main.sendService, this.main.sendApiService);
|
||||
const cmd = new SendRemovePasswordCommand(
|
||||
this.main.sendService,
|
||||
this.main.sendApiService,
|
||||
this.main.environmentService,
|
||||
);
|
||||
const response = await cmd.run(id);
|
||||
this.processResponse(response);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user