-
Notifications
You must be signed in to change notification settings - Fork 650
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adds username length validation #13561
Conversation
email = "testemail@#{@organization.whitelisted_email_domains[0]}" | ||
password = '12345678' | ||
host! "#{@organization.name}.localhost.lan" | ||
post signup_organization_user_url(user_domain: @organization.name, user: { username: username, email: email, password: password }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is too long. [136/120]
email = "testemail@#{@organization.whitelisted_email_domains[0]}" | ||
password = '12345678' | ||
host! "#{@organization.name}.localhost.lan" | ||
post signup_organization_user_url(user_domain: @organization.name, user: { username: username, email: email, password: password }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is too long. [136/120]
email = "testemail@#{@organization.whitelisted_email_domains[0]}" | ||
password = '12345678' | ||
user = { username: name, email: email, password: password } | ||
org_name = @organization.name |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Operator = should be surrounded by a single space.
Unnecessary spacing detected.
retest this please |
fixes #13053