Use seed instead of signup page for admin + basic local file uploading using TUS & Uppy
This commit is contained in:
@ -33,7 +33,7 @@ export function censorEmail(email: string): string {
|
||||
const firstChar = localPart[0]
|
||||
const lastChar = localPart[localPart.length - 1]
|
||||
const middleLength = Math.min(localPart.length - 2, 7)
|
||||
const middle = '∗'.repeat(middleLength)
|
||||
const middle = '#'.repeat(middleLength)
|
||||
|
||||
return `${firstChar}${middle}${lastChar}@${domain}`
|
||||
}
|
||||
|
Reference in New Issue
Block a user