forked from AkkomaGang/akkoma
Add restriction on names
This commit is contained in:
parent
a3b9741a62
commit
668b01da0b
1 changed files with 1 additions and 0 deletions
|
@ -63,6 +63,7 @@ def register_changeset(struct, params \\ %{}) do
|
|||
|> validate_confirmation(:password)
|
||||
|> unique_constraint(:email)
|
||||
|> unique_constraint(:nickname)
|
||||
|> validate_format(:nickname, ~r/^[a-zA-Z\d]+$/)
|
||||
|
||||
if changeset.valid? do
|
||||
hashed = Comeonin.Pbkdf2.hashpwsalt(changeset.changes[:password])
|
||||
|
|
Loading…
Reference in a new issue