aboutsummaryrefslogtreecommitdiffstats
path: root/wee_slack.py
diff options
context:
space:
mode:
authorRyan Huber <rhuber@gmail.com>2017-02-02 13:42:13 -0800
committerRyan Huber <rhuber@gmail.com>2017-02-02 13:42:13 -0800
commitbcc417562c2067095b03df383b0579da3e65d780 (patch)
tree9d0e8f239d8640488410b8e53274f8ad7e6c672a /wee_slack.py
parent41ccc05e014e4f3cea3fbab6b291aa44aceeb619 (diff)
downloadwee-slack-bcc417562c2067095b03df383b0579da3e65d780.tar.gz
markers fully work
Diffstat (limited to 'wee_slack.py')
-rw-r--r--wee_slack.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/wee_slack.py b/wee_slack.py
index 692ccf1..be94d4d 100644
--- a/wee_slack.py
+++ b/wee_slack.py
@@ -1217,6 +1217,12 @@ def process_channel_marked(message_json, eventrouter, **kwargs):
channel = kwargs["channel"]
dbg(channel, True)
channel.mark_read(False)
+def process_group_marked(message_json, eventrouter, **kwargs):
+ process_channel_marked(message_json, eventrouter, **kwargs)
+def process_im_marked(message_json, eventrouter, **kwargs):
+ process_channel_marked(message_json, eventrouter, **kwargs)
+def process_mpim_marked(message_json, eventrouter, **kwargs):
+ process_channel_marked(message_json, eventrouter, **kwargs)
def process_channel_joined(message_json, eventrouter, **kwargs):
item = message_json["channel"]