Implement client get/set display name endpoint

Add ability to unset avatar URL/display name
This commit is contained in:
Pim Kunis 2021-09-08 17:32:10 +02:00
parent 3e1a377226
commit af40cebc01
4 changed files with 61 additions and 17 deletions

View file

@ -6,6 +6,7 @@ defmodule Architex.Repo.Migrations.CreateInitialTables do
add :localpart, :string, null: false
add :password_hash, :string, size: 60, null: false
add :avatar_url, :string, null: true
add :displayname, :string, null: true
timestamps(updated_at: false)
end