mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
registration
This commit is contained in:
@@ -21,11 +21,11 @@ var TokenRequest = function (email, masterPasswordHash, device) {
|
||||
this.device = null;
|
||||
};
|
||||
|
||||
var RegisterRequest = function () {
|
||||
var RegisterRequest = function (email, masterPasswordHash, masterPasswordHint) {
|
||||
this.name = null;
|
||||
this.email = null;
|
||||
this.masterPasswordHash = null;
|
||||
this.masterPasswordHint = null;
|
||||
this.email = email;
|
||||
this.masterPasswordHash = masterPasswordHash;
|
||||
this.masterPasswordHint = masterPasswordHint ? masterPasswordHint : null;
|
||||
};
|
||||
|
||||
var PasswordHintRequest = function (email) {
|
||||
|
||||
Reference in New Issue
Block a user