mirror of
https://github.com/fly-apps/live_beats.git
synced 2024-11-21 15:41:00 +00:00
Allow GitHub usernames with uppercase characters
This commit is contained in:
parent
fa8d7f6692
commit
eb7b12d1f9
2 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@ defmodule LiveBeats.Accounts.User do
|
|||
|
||||
defp validate_username(changeset) do
|
||||
changeset
|
||||
|> validate_format(:username, ~r/^[a-z0-9_-]{2,32}$/)
|
||||
|> validate_format(:username, ~r/^[a-zA-Z0-9_-]{2,32}$/)
|
||||
|> unsafe_validate_unique(:username, LiveBeats.Repo)
|
||||
|> unique_constraint(:username)
|
||||
|> prepare_changes(fn changeset ->
|
||||
|
|
|
@ -22,7 +22,7 @@ defmodule LiveBeats.AccountsTest do
|
|||
test "creates users with valid data" do
|
||||
info = %{
|
||||
"id" => "github-id",
|
||||
"login" => "chrismccord",
|
||||
"login" => "Chrismccord",
|
||||
"avatar_url" => "https://example.com",
|
||||
"html_url" => "https://example.com"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue