Mercurial > libervia-backend
comparison sat/plugins/plugin_xep_0060.py @ 3467:5901a7170528
plugin XEP-0060: renamed `psRetractItem(s)` to `psItem(s)Retract` for consistency.
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 19 Feb 2021 15:53:27 +0100 |
parents | f37e6e78db12 |
children | 36cac8e6f57d |
comparison
equal
deleted
inserted
replaced
3466:80f8635dc66e | 3467:5901a7170528 |
---|---|
212 out_sign="as", | 212 out_sign="as", |
213 method=self._sendItems, | 213 method=self._sendItems, |
214 async_=True, | 214 async_=True, |
215 ) | 215 ) |
216 host.bridge.addMethod( | 216 host.bridge.addMethod( |
217 "psRetractItem", | 217 "psItemRetract", |
218 ".plugin", | 218 ".plugin", |
219 in_sign="sssbs", | 219 in_sign="sssbs", |
220 out_sign="", | 220 out_sign="", |
221 method=self._retractItem, | 221 method=self._retractItem, |
222 async_=True, | 222 async_=True, |
223 ) | 223 ) |
224 host.bridge.addMethod( | 224 host.bridge.addMethod( |
225 "psRetractItems", | 225 "psItemsRetract", |
226 ".plugin", | 226 ".plugin", |
227 in_sign="ssasbs", | 227 in_sign="ssasbs", |
228 out_sign="", | 228 out_sign="", |
229 method=self._retractItems, | 229 method=self._retractItems, |
230 async_=True, | 230 async_=True, |