diff options
author | Roger Braun <roger@rogerbraun.net> | 2017-04-16 15:28:28 +0200 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2017-04-16 15:28:28 +0200 |
commit | d7e3b72c6a720a2cbb966399719c1274504b7456 (patch) | |
tree | 54dbaf8c67c8c0be41b072f636408ab7e9123f1e /lib | |
parent | 7617a593b9acef6d87ed020714d4ea523da201b0 (diff) | |
download | pleroma-d7e3b72c6a720a2cbb966399719c1274504b7456.tar.gz pleroma-d7e3b72c6a720a2cbb966399719c1274504b7456.zip |
Add avatar objects to user, fix specs.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/user.ex | 1 |
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 |