mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-08-26 15:07:58 -04:00
[GH-ISSUE #12] Account Creation Form Issues #10
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Shadowfita on GitHub (Dec 26, 2024).
Original GitHub issue: https://github.com/Drop-OSS/drop/issues/12
Hi,
Great project(s). Thank you very much for undertaking such a task.
I have just spun up my own instance and upon creating the admin account, am unable to use a non-typical domain suffix. It seems that every other letter makes it invalid. E.g., .tech domains.
Additionally, the username character requirement seems to be checking if it is greater than 5 characters, rather than equal to or greater than, as one would expect based on the input description.
Thanks again!
@DecDuck commented on GitHub (Dec 26, 2024):
Thanks for the bug report!
We've patched the username issue just now on our
developbranch (was just missing the = sign)About the email issue - what emails were you trying? The validation regex doesn't specify any specific TLDs, it's just looking for:
[text]@[text].[text]
Did you perhaps have a space at the beginning or end?
@Shadowfita commented on GitHub (Dec 26, 2024):
No spaces. For example: .com is valid, .au is not, and .tech is not.
Appreciate your prompt action!!
@DecDuck commented on GitHub (Dec 26, 2024):
Hey! I figured out the issue. I had misunderstood what the
gflag does to a RegEx in Javascript.It's been fixed in the
developbranch, and I can backport the fix to themainbranch if you need.Account Creation Form Issuesto [GH-ISSUE #12] Account Creation Form Issues