-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ui): 🐛 improve reactivity of contacts & qr code
- Loading branch information
Showing
10 changed files
with
645 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
|
||
export const STOREAGE_SALT = 'b9f4088bd3a93783147e3d78aa10cc911a2449a0d79a226ae33a5957b368cc18' | ||
|
||
export const DUFFS = 100000000; | ||
|
||
export const OIDC_CLAIMS = { | ||
preferred_username: '', | ||
name: '', // [given_name,middle_name,family_name].join(' ') | ||
given_name: '', | ||
family_name: '', | ||
middle_name: '', | ||
nickname: '', | ||
website: '', | ||
address: {}, | ||
email: '', | ||
email_verified: false, | ||
phone_number: '', | ||
phone_number_verified: false, | ||
profile: '', // 'https://imgur.com/gallery/y6sSvCr.json', | ||
picture: '', // 'https://i.imgur.com/y6sSvCr.jpeg', // url to avatar img | ||
sub: '', | ||
xpub: '', | ||
updated_at: (new Date()).toISOString(), | ||
} | ||
|
||
export const PHRASE_REGEX = new RegExp( | ||
/^([a-zA-Z]+\s){11,}([a-zA-Z]+)$/ | ||
) | ||
export const ALIAS_REGEX = new RegExp( | ||
/^[a-zA-Z0-9]{1,}$/ | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.