Guillaume Vincent 5 роки тому
джерело
коміт
2e4a22ce03
1 змінених файлів з 6 додано та 8 видалено
  1. +6
    -8
      mobile/src/auth/authActions.js

+ 6
- 8
mobile/src/auth/authActions.js Переглянути файл

@@ -28,14 +28,12 @@ function getEncryptedCredentials(credentials) {
return generatePassword(credentials.password, {
site: "lesspass.com",
login: credentials.email,
options: {
lowercase: true,
uppercase: true,
digits: true,
symbols: true,
length: 16,
counter: 1
}
lowercase: true,
uppercase: true,
digits: true,
symbols: true,
length: 16,
counter: 1
}).then(encryptedPassword => ({
email: credentials.email,
password: encryptedPassword


Завантаження…
Відмінити
Зберегти