aboutsummaryrefslogtreecommitdiff
path: root/include/dchat/User.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-11-24 19:17:21 +0100
committerdec05eba <dec05eba@protonmail.com>2018-11-24 19:17:23 +0100
commitd647b0cc7efbaab31efe8e21066fc4fa0647a65e (patch)
treeade7fcbab090ef80deebb2244154a29cb441841e /include/dchat/User.hpp
parent95be16d3a565afc1c0bb1f3d6c95c223ba7ae221 (diff)
Add change avatar method
Diffstat (limited to 'include/dchat/User.hpp')
-rw-r--r--include/dchat/User.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dchat/User.hpp b/include/dchat/User.hpp
index 245197f..9d22cb3 100644
--- a/include/dchat/User.hpp
+++ b/include/dchat/User.hpp
@@ -14,6 +14,7 @@ namespace dchat
User(const odhtdb::Signature::PublicKey &_publicKey) : publicKey(_publicKey), userdata(nullptr) {}
const odhtdb::Signature::PublicKey publicKey;
std::string nickname;
+ std::string avatarUrl;
std::vector<std::shared_ptr<Group>> groups;
void *userdata;
};