summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2017-04-16 15:28:28 +0200
committerRoger Braun <roger@rogerbraun.net>2017-04-16 15:28:28 +0200
commitd7e3b72c6a720a2cbb966399719c1274504b7456 (patch)
tree54dbaf8c67c8c0be41b072f636408ab7e9123f1e /lib
parent7617a593b9acef6d87ed020714d4ea523da201b0 (diff)
downloadpleroma-d7e3b72c6a720a2cbb966399719c1274504b7456.tar.gz
pleroma-d7e3b72c6a720a2cbb966399719c1274504b7456.zip
Add avatar objects to user, fix specs.
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/user.ex1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/pleroma/user.ex b/lib/pleroma/user.ex
index ed85447fe..fdcc1b7d5 100644
--- a/lib/pleroma/user.ex
+++ b/lib/pleroma/user.ex
@@ -13,6 +13,7 @@ defmodule Pleroma.User do
field :password_confirmation, :string, virtual: true
field :following, { :array, :string }, default: []
field :ap_id, :string
+ field :avatar, :map
timestamps()
end