Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3492026
D6095.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
871 B
Referenced Files
None
Subscribers
None
D6095.diff
View Options
diff --git a/lib/shared/account-utils.js b/lib/shared/account-utils.js
--- a/lib/shared/account-utils.js
+++ b/lib/shared/account-utils.js
@@ -7,6 +7,7 @@
import type { AppState } from '../types/redux-types';
import type { PreRequestUserState } from '../types/session-types';
import type { CurrentUserInfo } from '../types/user-types';
+import { isValidEthereumAddress } from '../utils/siwe-utils';
const usernameMaxLength = 191;
const usernameMinLength = 1;
@@ -74,6 +75,12 @@
);
}
+function accountHasPassword(currentUserInfo: ?CurrentUserInfo): boolean {
+ return currentUserInfo?.username
+ ? !isValidEthereumAddress(currentUserInfo.username)
+ : false;
+}
+
export {
usernameMaxLength,
oldValidUsernameRegexString,
@@ -83,4 +90,5 @@
invalidSessionDowngrade,
invalidSessionRecovery,
validHexColorRegex,
+ accountHasPassword,
};
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Dec 19, 9:47 PM (21 h, 32 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2678949
Default Alt Text
D6095.diff (871 B)
Attached To
Mode
D6095: Implement function to check whether account has password - currently checking for ethereum validity
Attached
Detach File
Event Timeline
Log In to Comment