#how to allow commands only for admin?

8 messages · Page 1 of 1 (latest)

visual lagoon
#

how to allow commands only for admin?

visual lagoon
#

i use that, but not work

hushed panther
#

whats your requirement

harsh nexus
#

My advice for you is to read the documentation and explore the example.js. Your code has some misconceptions

visual lagoon
visual lagoon
remote mountain
#

You can get all of the participants using

const chat = await msg.getChat() // add "as GroupChat" if you're using typescript
const participants = chat.participants

Then filter the list of the participants to get the admins

const admins = participants.filter(p=>p.isAdmin)