Skip to content
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

Place the user actions in a dropdown window with labels #15260

Merged
Prev Previous commit
Next Next commit
Merge branch 'master' into feat/13991/improve-user-actions-ui
  • Loading branch information
ornicar authored Jun 14, 2024
commit 05dbfcff0910585d5a6ed3ea9b85650886bd2a8a
2 changes: 1 addition & 1 deletion modules/core/src/main/userId.scala
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ object userId:
extension (e: UserName) def str = UserStr(e)
given UserIdOf[UserName] = n => UserId(n.value.toLowerCase)
// what existing usernames are like
val historicalRegex = "(?i)[a-z0-9_][a-z0-9_-]{0,28}[a-z0-9]".r
val historicalRegex = "[a-zA-Z0-9_-]{2,30}".r
val anonymous: UserName = "Anonymous"
val lichess: UserName = "lichess"
val anonMod: String = "A Lichess Moderator"
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.