I am using Django channels Group to build a chat system and want to fetch all the users in chat room.
Group provide these methods :
Group("group_name").add(message.reply_channel)
Group("group_name").discard(message.reply_channel)
Group("group_name").send({"text": "My group message",})
But there is nothing like that I can find all users(reply_channel) in Group.
Thanks