aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers.py (unfollow)
Commit message (Collapse)AuthorLines
2021-11-16Don't log threads in admin channels (#1954)Gravatar ChrisJL-0/+12
This change disables the mod-log for any changes to threads in channels that mods don't have read perms to. Co-authored-by: Kieran Siek <[email protected]>
2021-11-14Update order of off-topic channels (#1956)Gravatar mina-2/+2
Reverse order of off-topic channels from ot0, ot1, ot2 to ot2, ot1, ot0
2021-11-14Add #bot-commands to guild features in !serverGravatar Joe Banks-1/+4
This prevents spam in dev-contrib and dev-core from people trying to find which Discord feature flags are enabled for Python Discord. It's not ideal that we have to increase output size in #bot-commands but it prevents spam in #dev-contrib.
2021-11-11Change log level from `WARNING` to `DEBUG`. (#1950)Gravatar TizzySaurus-3/+1
2021-11-10Merge PR #1947: Fix `!infractions by me`Gravatar TizzySaurus-1/+1
Put the literal converter before the Member converter so that "me"/"m" isn't attempted to be converted to a Member.
2021-11-10Unify infraction embed titleGravatar Izan-1/+1
Embed for `!infractions by` no longer has the author in codeblock.
2021-11-10commands: add pip as an alias to pypi (#1942)Gravatar aru-1/+1
Co-authored-by: Xithrius <[email protected]>
2021-11-10Check if log entry has embeds before indexing themGravatar Shivansh-007-1/+4
2021-11-09Listen to only on_raw_message_deleteGravatar Qwerty-133-19/+21
2021-11-09Call the appropriate function in the raw listenerGravatar Qwerty-133-1/+1
2021-11-09Filter the same messages in both listeners.Gravatar Qwerty-133-1/+1
2021-11-08Add missing newline after region commentGravatar Izan-0/+1
2021-11-07Explicitly show there is no message contentGravatar Shivansh-007-5/+4
2021-11-07SHow thread parent name if linked message in threadGravatar Shivansh-007-1/+3
2021-11-07Attach attachments if present in linked messageGravatar Shivansh-007-0/+2
2021-11-07Add no message content handlingGravatar Shivansh-007-4/+6
2021-11-06Only re-run filters in `on_message_update` if contents/attachments changed ↵Gravatar TizzySaurus-2/+10
(#1937)
2021-11-05Merge pull request from GHSA-j8c3-8x46-8pp6Gravatar Hassan Abouelela-4/+40
* Don't Exit Token Filtering Early On URLs The token filtering function would exit early if it detected a URL within the message, but it made no extra checks to ensure there weren't other tokens within that message that would trigger it. This made sense when the filtering logic was written, but it's been modified since to introduce this bug. Regression tests included. Signed-off-by: Hassan Abouelela <[email protected]> * Links Advisory In Token Filter Tests Adds a link to the advisory with reasoning for the existence of the test. Signed-off-by: Hassan Abouelela <[email protected]>