Mercurial > libervia-backend
diff src/bridge/bridge_constructor/dbus_frontend_template.py @ 450:afe9cfd2ddbb
plugins: radio collective first draft
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 05 Jan 2012 00:21:30 +0100 |
parents | 961543b20806 |
children | 72522263cbc9 |
line wrap: on
line diff
--- a/src/bridge/bridge_constructor/dbus_frontend_template.py Mon Dec 12 22:24:50 2011 +0100 +++ b/src/bridge/bridge_constructor/dbus_frontend_template.py Thu Jan 05 00:21:30 2012 +0100 @@ -98,6 +98,12 @@ def quizGameAnswer(self, player, referee, answer, profile_key): return self.db_plugin_iface.quizGameAnswer(player, referee, answer, profile_key) + def radiocolLaunch(self, players, profile_key): + return self.db_plugin_iface.radiocolLaunch(players, profile_key) + + def radiocolCreate(self, room_jid, profile_key): + return self.db_plugin_iface.radiocolCreate(room_jid, profile_key) + def sendFile(self, to, path, data, profile_key): return self.db_plugin_iface.sendFile(to, path, data, profile_key)