1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

persist user profile information

This commit is contained in:
Kyle Spearrin
2016-09-20 23:30:16 -04:00
parent 34c2340a4d
commit 8b76668f1f
5 changed files with 139 additions and 72 deletions

View File

@@ -32,9 +32,9 @@ var PasswordHintRequest = function (email) {
this.email = email;
};
var TokenTwoFactorRequest = function () {
this.code = null;
this.provider = null;
var TokenTwoFactorRequest = function (code) {
this.code = code;
this.provider = "Authenticator";
this.device = null;
};