1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 13:40:06 +00:00

add PasswordSettingsComponent ngOnInit

This commit is contained in:
rr-bw
2025-03-19 14:39:16 -07:00
parent 7eddf8b55a
commit 9fedf0ed56
3 changed files with 27 additions and 2 deletions

View File

@@ -6,5 +6,6 @@
[masterPasswordPolicyOptions]="masterPasswordPolicyOptions"
[inlineButtons]="true"
[primaryButtonText]="{ key: 'changeMasterPassword' }"
(onPasswordFormSubmit)="handlePasswordFormSubmit($event)"
>
</auth-input-password>

View File

@@ -9,6 +9,7 @@ import {
InputPasswordComponent,
InputPasswordFlow,
} from "../input-password/input-password.component";
import { PasswordInputResult } from "../input-password/password-input-result";
@Component({
standalone: true,
@@ -36,4 +37,8 @@ export class ChangeExistingPasswordComponent implements OnInit {
this.policyService.masterPasswordPolicyOptions$(),
);
}
handlePasswordFormSubmit(passwordInputResult: PasswordInputResult) {
// TODO-rr-bw: Full Sync if Rotate User Key is true (see setupSubmitActions)
}
}