user: put default user info when registering a user

This commit is contained in:
William Pitcock 2018-12-05 03:35:41 +00:00
parent ec1ec32f20
commit 956f3c75ca
1 changed files with 1 additions and 0 deletions

View File

@ -177,6 +177,7 @@ defmodule Pleroma.User do
|> validate_format(:email, @email_regex)
|> validate_length(:bio, max: 1000)
|> validate_length(:name, min: 1, max: 100)
|> put_change(:info, %Pleroma.User.Info{})
if changeset.valid? do
hashed = Pbkdf2.hashpwsalt(changeset.changes[:password])