From 43f0cf18235193c0bd535c62c1e4c7c841bfe117 Mon Sep 17 00:00:00 2001
From: Someone <someone@somenet.org>
Date: Wed, 8 Dec 2021 19:38:38 +0100
Subject: [PATCH] [somebot] /ta-join-admins

---
 modules/TACommandJoinAdmins.py | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 modules/TACommandJoinAdmins.py

diff --git a/modules/TACommandJoinAdmins.py b/modules/TACommandJoinAdmins.py
new file mode 100644
index 0000000..bd2bcbe
--- /dev/null
+++ b/modules/TACommandJoinAdmins.py
@@ -0,0 +1,23 @@
+# Mattermost Bot module.
+#  Copyright (c) 2016-2021 by Someone <someone@somenet.org> (aka. Jan Vales <jan@jvales.net>)
+#  published under MIT-License
+
+
+
+from AbstractCommand import *
+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]"
+
+
+    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"]]
+
+        for u in user_ids:
+            self.bot.api.add_user_to_channel(data["channel_id"], u)
+
+        request.cmd_respond_text_temp("### ``Done.`` :)")
-- 
2.43.0