If I want to mute user but give him opportunity to send photos, videos, stickers and gifs I will use:
_, err := b.RestrictChatMember(ctx, &bot.RestrictChatMemberParams{
ChatID: msg.Chat.ID,
UserID: msg.From.ID,
Permissions: &models.ChatPermissions{
CanSendMessages: false,
CanSendPhotos: true,
CanSendVideos: true,
CanSendOtherMessages: true,
},
UntilDate: int(until),
})
BUT CanSendOtherMessages: true gives opportunity to send text!
If I want to mute user but give him opportunity to send photos, videos, stickers and gifs I will use:
BUT
CanSendOtherMessages: truegives opportunity to send text!