mirror of
https://github.com/williamkray/maubot-kickbot.git
synced 2024-10-01 06:05:46 -04:00
make guests command open to all
This commit is contained in:
parent
d9825d515c
commit
16b3b5b318
@ -153,7 +153,6 @@ class KickBot(Plugin):
|
||||
## loop through each room and report people who are "guests" (in the room, but not members of the space)
|
||||
@activity.subcommand("guests", help="generate a list of members in this room who are not members of the parent space")
|
||||
async def get_guestlist(self, evt: MessageEvent) -> None:
|
||||
if evt.sender in self.config["admins"]:
|
||||
space_members_obj = await self.client.get_joined_members(self.config["master_room"])
|
||||
space_members_list = space_members_obj.keys()
|
||||
room_members_obj = await self.client.get_joined_members(evt.room_id)
|
||||
@ -168,8 +167,6 @@ class KickBot(Plugin):
|
||||
{'<br />'.join(guest_list)}", allow_html=True)
|
||||
except Exception as e:
|
||||
await evt.respond(f"something went wrong: {e}")
|
||||
else:
|
||||
await evt.reply("lol you don't have permission to set that")
|
||||
|
||||
|
||||
@classmethod
|
||||
|
Loading…
Reference in New Issue
Block a user