me/here arguments

This commit is contained in:
klemek
2021-01-11 15:57:18 +01:00
parent 5563945dcc
commit bfe279095d
7 changed files with 24 additions and 14 deletions
+3 -3
View File
@@ -17,8 +17,8 @@ class FullScanner(Scanner):
return "```\n"
+"%full : Show full statistics\n"
+"arguments:\n"
+"* @member : filter for one or more member\n"
+"* #channel : filter for one or more channel\n"
+"* @member/me : filter for one or more member\n"
+"* #channel/here : filter for one or more channel\n"
+"Example: %full #mychannel1 @user\n"
+"```"
@@ -61,6 +61,6 @@ class FullScanner(Scanner):
res += ["__Other__:"]
res += self.other.to_string(
show_top_channel=len(self.channels) > 1,
show_mentioned=(len(self.members) != 1),
show_mentioned=(len(self.members) > 0),
)
return res