-
Notifications
You must be signed in to change notification settings - Fork 417
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement Allowed Mentions #649
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good! That's also how I would have done it.
As this feature is due to a breaking change in Discord API I'm also inclined to entirely remove disableEveryone.
However if we want to still support legacy behavior, we could manually add "everyone"
if they still pass disableEveryone and it is explicitely set to false.
I personally don't think we should do this as, at worst it will just suppress everyone mention for everyone
and this feature looks like a big change in DAPI and can probably also be for users wanting to use last eris version.
Also, this ref discord/discord-api-docs#1396 |
Implemented Allowed Mentions. Since this functionality entirely covers the use cases of
disableEveryone
, I replaced it entirely. Feedback and testing for this PR would be appreciated.