From 9f1708c8044c17ae0506d8823c870f045a9b080b Mon Sep 17 00:00:00 2001 From: Someone Date: Sun, 9 Jan 2022 01:17:25 +0100 Subject: [PATCH] modules/TACommandJoinAdmins.py --- modules/TACommandJoinAdmins.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/TACommandJoinAdmins.py b/modules/TACommandJoinAdmins.py index 961dcb4..9f01116 100644 --- a/modules/TACommandJoinAdmins.py +++ b/modules/TACommandJoinAdmins.py @@ -4,20 +4,20 @@ -from AbstractCommand import * +from AbstractCommand import AbstractCommand class TACommandJoinAdmins(AbstractCommand): TRIGGER = "ta-join-admins" CONFIG = {"display_name": "somebot-command", "auto_complete": True, } - CONFIG["auto_complete_desc"] = CONFIG["description"] = "Join all Team Admins into current channel. Works for private channels. There is no undo. [TEAM_ADMIN]" + CONFIG["auto_complete_desc"] = CONFIG["description"] = "🔇 Join all Team Admins into current channel. Works for private channels. There is no undo. [TEAM_ADMIN]" def on_POST(self, request, data): self._require_team_admin(data) # will throw an exception if not. (Dont try-except: Its handled up the stack.) - user_ids = [u["user_id"] for u in self.bot.api.get_team_members(self.TEAM_ID) if "team_admin" in u["roles"]] + user_ids = [u["user_id"] for u in self.bot.api.get_team_members(data['team_id']) if "team_admin" in u["roles"]] for u in user_ids: self.bot.api.add_user_to_channel(data["channel_id"], u) - request.cmd_respond_text_temp("### ``Done.`` :)") + request.respond_cmd_temp("## :white_check_mark: Success! :)") -- 2.43.0