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

password hint

This commit is contained in:
Kyle Spearrin
2016-09-20 17:47:21 -04:00
parent 797a18b46a
commit 0219068bb6
14 changed files with 115 additions and 22 deletions

View File

@@ -28,8 +28,8 @@ var RegisterRequest = function () {
this.masterPasswordHint = null;
};
var PasswordHintRequest = function () {
this.email = null;
var PasswordHintRequest = function (email) {
this.email = email;
};
var TokenTwoFactorRequest = function () {

View File

@@ -1,4 +1,4 @@
var CipherResponse = function (response) {
var CipherResponse = function (response) {
this.id = response.Id;
this.folderId = response.FolderId;
this.type = response.Type;
@@ -24,7 +24,7 @@ var SiteResponse = function (response) {
this.favorite = response.Favorite;
this.revisionDate = response.RevisionDate;
if(response.Folder) {
if (response.Folder) {
this.folder = new FolderResponse(response.Folder);
}
};
@@ -51,8 +51,10 @@ var ListResponse = function (data) {
};
var ErrorResponse = function (response) {
this.message = response.responseJSON.Message;
this.validationErrors = response.responseJSON.ValidationErrors;
if (response.responseJSON) {
this.message = response.responseJSON.Message;
this.validationErrors = response.responseJSON.ValidationErrors;
}
this.statusCode = response.status;
};