[dlfp] ICapMessagesReply.post_reply() implemented
This commit is contained in:
parent
c819276f4f
commit
76c4622dc3
5 changed files with 72 additions and 5 deletions
|
|
@ -98,5 +98,13 @@ class ICapMessages(ICap):
|
|||
raise NotImplementedError()
|
||||
|
||||
class ICapMessagesReply(ICap):
|
||||
def post_reply(self, to, message):
|
||||
def post_reply(self, thread_id, reply_id, title, message):
|
||||
"""
|
||||
Post a reply.
|
||||
|
||||
@param thread_id ID of thread
|
||||
@param reply_id message's id to reply
|
||||
@param title title of message
|
||||
@param message message to send
|
||||
"""
|
||||
raise NotImplementedError()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue