Mercurial > libervia-backend
diff frontends/src/bridge/DBus.py @ 562:0bb2e0d1c878
core, plugin XEP-0054: avatar upload:
- plugin XEP-0054: new setAvatar bridge method
- new "presence_available" trigger
- new DataError
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 28 Dec 2012 01:00:31 +0100 |
parents | 3eeb6c865e4d |
children | 239abc5484c9 |
line wrap: on
line diff
--- a/frontends/src/bridge/DBus.py Wed Dec 19 23:22:10 2012 +0100 +++ b/frontends/src/bridge/DBus.py Fri Dec 28 01:00:31 2012 +0100 @@ -226,6 +226,9 @@ def radiocolSongAdded(self, room_jid, song_path, profile): return self.db_plugin_iface.radiocolSongAdded(room_jid, song_path, profile) + def setAvatar(self, avatar_path, profile): + return self.db_plugin_iface.setAvatar(avatar_path, profile) + def sendFile(self, to, path, data, profile_key): return self.db_plugin_iface.sendFile(to, path, data, profile_key)