| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2020-10-18 | Silence: add locks to commands | -1/+9 | ||
| 2020-10-18 | Silence: rename function to reduce ambiguity | -10/+10 | ||
| 2020-10-09 | Silence: amend the manual unsilence message | -2/+3 | ||
| Clarify that this situation could also result from the cache being cleared prematurely. There's no way to distinguish the two scenarios, so a manual unsilence is required for both. | ||||
| 2020-10-09 | Silence: require only 1 permission to be False for a manual unsilence | -1/+3 | ||
| Previously, both sending messages and adding reactions had to be false in order for the manual unsilence failure message to be sent. Because staff may only set one of these manually, the message should be sent if at least one of the permissions is set. | ||||
| 2020-10-09 | Silence: fix scheduled tasks not being cancelled on unload | -1/+1 | ||
| 2020-10-08 | Silence tests: make _async_init attribute tests more robust | -7/+11 | ||
| 2020-10-08 | Silence: remove _mod_log_channel attribute | -3/+2 | ||
| It's only used as an argument to `SilenceNotifier`, so it doesn't need to be an instance attribute. | ||||
| 2020-10-08 | Silence: add to notifier when indefinite rather than temporary | -7/+7 | ||
| Accidentally swapped the logic in a previous commit during a refactor. | ||||
| 2020-10-08 | Fix millisecond time for command processing time | -1/+1 | ||
| - For the `.ping` command - Fixes a faulty convertion from seconds to milliseconds | ||||
| 2020-10-08 | Update bot/exts/moderation/infraction/infractions.py | -1/+1 | ||
| Co-authored-by: Dennis Pham <[email protected]> | ||||
| 2020-10-08 | update documentation | -1/+14 | ||
| 2020-10-08 | remove redundant if statement | -1/+1 | ||
| 2020-10-08 | remove redundant if statement | -2/+1 | ||
| 2020-10-07 | Silence tests: fix unawaited coro warnings | -2/+7 | ||
| Because the Scheduler is mocked, it doesn't actually do anything with the coroutines passed to the schedule() functions, hence the warnings. | ||||
| 2020-10-07 | made sure to use sub_clyde on username passed to send_attachments | -1/+2 | ||
| 2020-10-07 | Refactor tests to use updated changes to syncer.py and API. | -58/+59 | ||
| 2020-10-07 | improve code efficiency and use updated API changes to pagination | -98/+48 | ||
| 2020-10-07 | Add the ability to purge and ban in one command. | -2/+26 | ||
| 2020-10-06 | Silence: rename _init_cog to _async_init | -15/+15 | ||
| 2020-10-06 | Silence: refactor _silence | -33/+32 | ||
| * Rename to `_silence_overwrites` * Reduce responsibilities to only setting permission overwrites * Log in `silence` instead * Add to notifier in `silence` instead | ||||
| 2020-10-06 | Silence: move unsilence scheduling to a separate function | -8/+13 | ||
| 2020-10-06 | Include rolled over logs in gitignore | -0/+1 | ||
| RotatingFileHandler appends .# to log names when rolling over to a new file. | ||||
| 2020-10-06 | Fix old nick in superstarify reason | -2/+3 | ||
| 2020-10-06 | Use .get() instead of index for fetching is_pending property | -1/+1 | ||
| 2020-10-06 | Correct raw_member to member in verification on_join | -1/+1 | ||
| 2020-10-06 | Reword on_join comment for alternate gate members | -1/+4 | ||
| 2020-10-06 | Clear up comment around DM send | -0/+4 | ||
| 2020-10-06 | Reword cache creation comment | -1/+1 | ||
| 2020-10-06 | Use clearer variable names in list comprehensions | -2/+2 | ||
| 2020-10-06 | Merge get and pop into one conditional | -3/+1 | ||
| 2020-10-06 | Add type annotation to on_member_update listener | -1/+1 | ||
| 2020-10-06 | Support users with alternate gating methods | -0/+42 | ||
| 2020-10-04 | Sort rules before determining invalid indices. | -14/+5 | ||
| This is to avoid sorting twice - once for invalid indices and again for send the rules. | ||||
| 2020-10-03 | Use `url` argument instead of setting it outside. | -2/+1 | ||
| 2020-10-03 | Use `Greedy` converter instead of the splat operator. | -2/+2 | ||
| 2020-10-03 | Remove duplicates from given rule indices and sort them in order. | -4/+11 | ||
| 2020-10-03 | Replace `map` with a more pythonic list comprehension. | -1/+1 | ||
| 2020-10-03 | Use invite for tracking offline presences instead of `ctx` | -2/+2 | ||
| 2020-10-03 | Add trailing comma to intents | -1/+1 | ||
| 2020-10-03 | Lock: make LockGuard.locked a property | -1/+2 | ||
| 2020-10-03 | Lock: rename variable to avoid shadowing | -3/+3 | ||
| 2020-10-03 | add missing test for `user` command | -0/+5 | ||
| 2020-10-03 | Cap most_common to 25 to not go over the embed fields limit | -1/+1 | ||
| 2020-10-03 | Add a socket stats command | -5/+37 | ||
| 2020-10-02 | Changed dm_relay to include user id in webhook when sending attachments. | -1/+5 | ||
| 2020-10-02 | Add use_cached argument to send_attachments, and change it to default to False | -1/+2 | ||
| 2020-10-02 | Changed send_attachments so kwargs could be given and would be passed to send() | -14/+13 | ||
| 2020-10-02 | remove un-used variable | -1/+0 | ||
| 2020-10-02 | Refactor unit tests UserSyncerSyncTests to use changes made to UserSyncer in ↵ | -7/+5 | ||
| _syncers.py | ||||
| 2020-10-02 | update UserSyncerDiffTests Tests to use changes made to API calls. | -6/+32 | ||