| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2020-09-21 | Accommodate new upload behaviour in tests | -2/+2 | ||
| 2020-09-21 | Upload output with codeblock escapes to pastebin | -0/+1 | ||
| The output can't be sent to discord, but it won't affect anything in the paste service and can safely be uploaded to it. | ||||
| 2020-09-21 | Fix import order of mod utils tests | -1/+1 | ||
| 2020-09-21 | Fix import path of mod utils | -1/+1 | ||
| 2020-09-21 | Fix end of file of mod utils tests | -1/+1 | ||
| 2020-09-20 | Apply recent changes of notify infraction to test | -3/+2 | ||
| 2020-09-20 | Try to fix location from where post infraction test get ID | -2/+2 | ||
| 2020-09-20 | Remove useless textwrap import | -1/+0 | ||
| 2020-09-20 | Remove special shortening from reason | -1/+1 | ||
| 2020-09-16 | remove random space in `upvotes` value | -1/+1 | ||
| 2020-09-16 | update the reddit emojis to actual emojis' | -3/+3 | ||
| 2020-09-16 | Updating names of reddit emotes. | -3/+4 | ||
| 2020-09-13 | Shorten infraction text when any other field than reason is too long | -0/+4 | ||
| 2020-09-11 | Verification: update & improve docstrings | -12/+11 | ||
| After moving constants to config, the docstring references were not updated accordingly, and remained uppercase. This commit also removed the redundant list indentation. | ||||
| 2020-09-10 | Verification: move constants to config | -25/+43 | ||
| 2020-09-08 | Fix cog_check tests | -8/+12 | ||
| 2020-09-08 | Fix tests for has_any_role_check | -16/+18 | ||
| 2020-09-08 | Rename role checks and decorators | -33/+33 | ||
| Make their names more in line with `has_any_role` for consistency. | ||||
| 2020-09-08 | Add everyone_ping filter. | -11/+47 | ||
| 2020-09-07 | Implement role checks using has_any_role | -34/+35 | ||
| Use `has_any_role` to reduce redundancy. Because discord.py always makes a check's predicate a coroutine, the checks now have to be awaited. | ||||
| 2020-09-07 | Remove everyone_ping rule from antispam. | -152/+0 | ||
| The feature will be moved to the filtering cog. | ||||
| 2020-09-06 | Use has_any_role's predicate directly | -31/+24 | ||
| In some places, it's more appropriate than using with_role_check since it will raise CheckFailures. This applies to `cog_check`s and other things which effectively act as command checks. | ||||
| 2020-09-06 | Implement the without_role decorator by negating has_any_role | -6/+17 | ||
| 2020-09-05 | Remove with_role decorator in favour of has_any_role | -76/+58 | ||
| `with_role` is obsolete because discord.py provides `has_any_role`. | ||||
| 2020-09-05 | Disable everyone_ping filter in AntiSpam cog | -4/+8 | ||
| As there are a few bugs in the implementation, I've temporarily disabled the at-everyone ping filter in the AntiSpam cog. We can disable it after we've fixed the bugs. Signed-off-by: Sebastiaan Zeeff <[email protected]> | ||||