Merge branch 'bugfix/ascii-alphanumeric-names' into 'develop'

Add restriction on names

Closes #15

See merge request !15
This commit is contained in:
lambadalambda 2017-04-24 09:59:44 -04:00
commit aef7e943e7
1 changed files with 1 additions and 0 deletions

View File

@ -63,6 +63,7 @@ defmodule Pleroma.User 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])