Add handling for special characters when generating usernames in the New Employee Onboarding crate
C
Continuous Minnow
by default, the crate uses a combo of the first and last name entered to generate the username. however, when a user has an apostrophe in their name, for example, this is not stripped prior to generating a username. resulting in Jim O'Ryan having a username of jo'ryan, which is not a desirable behavior.
Log In
C
Continuous Minnow
utilizing this filter would handle it for all non-alphabetical characters: regex_replace('[^a-zA-Z]', '')
so it is possible to unsync the username generation workflow and implement this update, however it would be nice to have this be builtin functionality