| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2020-10-18 | Fix grammar of voice ban pardoning message | -2/+2 | ||
| Co-authored-by: Joe Banks <[email protected]> | ||||
| 2020-10-18 | Remove unnecessary logging about user not found | -2/+1 | ||
| Co-authored-by: Joe Banks <[email protected]> | ||||
| 2020-10-17 | Allow !eval in #code-help-voice-2 | -1/+3 | ||
| 2020-10-17 | Use filter role whitelist for all filter features | -4/+3 | ||
| We were using different whitelists for different filters, making it slightly more difficult to maintain the role whitelists. They now all use the same list, which combines our staff roles with the Python community role and the sprinters role. Signed-off-by: Sebastiaan Zeeff <[email protected]> | ||||
| 2020-10-17 | Add sprinters role to filter whitelist | -0/+9 | ||
| I've added the sprinters role to the filter whitelist. This will not affect antispam and antimalware just yet, as they currently default to using the STAFF_ROLES constant. I've also kaizened the config-default.yml file by ensuring there are two linebreaks between all sections. Signed-off-by: Sebastiaan Zeeff <[email protected]> | ||||
| 2020-10-17 | Verification: avoid logging whole kick note payload | -1/+1 | ||
| Only the `member` is variable, no need to log the rest. Co-authored-by: Numerlor <[email protected]> | ||||
| 2020-10-16 | display inf id actioned in mod channel | -2/+2 | ||
| 2020-10-15 | Snekbox: raise paste character length | -1/+1 | ||
| It doesn't make sense for it to be at 1000 when the code gets truncated to 1000 as well. Fixes #1239 | ||||
| 2020-10-15 | Verification: simplify kick note reason | -1/+1 | ||
| This will make it much easier to filter out verification kicks when querying the infraction database. | ||||
| 2020-10-14 | Code block: fix _fix_indentation failing for line counts of 1 | -0/+4 | ||
| This could be reproduced by editing a tracked message to a single line of invalid Python that lacks any back ticks. The code was assuming there would be multiple lines because that's what the default value for the threshold is, but this threshold is not applied to edited messages. Fixes BOT-A5 | ||||
| 2020-10-14 | Utils: clarify why has_lines counts by splitting by newlines | -0/+1 | ||
| 2020-10-13 | Remove trailing whitespace from verification.py | -1/+1 | ||
| 2020-10-13 | Fix channel constant | -1/+1 | ||
| 2020-10-13 | Add production debug log for native verification | -0/+10 | ||
| 2020-10-13 | Verification: add notes to kicked users | -0/+1 | ||
| 2020-10-13 | Verification: implement kick note post helper | -0/+23 | ||
| 2020-10-13 | Fixed hardcoded prefix in __main__.py | -1/+1 | ||
| 2020-10-11 | Fix linting for voice gate and voice ban | -5/+4 | ||
| 2020-10-11 | Add production voice gate role and channel to configuration | -0/+2 | ||
| 2020-10-11 | Create test for voice unban fail send DM | -0/+15 | ||
| 2020-10-11 | Create base test for voice unban | -0/+18 | ||
| 2020-10-11 | Create test for voice ban pardon when user not found | -0/+7 | ||
| 2020-10-11 | Shorten voice ban reason and create test for it | -0/+20 | ||
| 2020-10-11 | Add Voice Ban test about calling apply_infraction | -0/+15 | ||
| 2020-10-11 | Create test for voice ban applying role remove ignore. | -0/+15 | ||
| 2020-10-11 | Check arguments for get_active_infraction in voice ban tests | -1/+1 | ||
| 2020-10-11 | Create test to check does this pass proper kwargs to infraction posting | -0/+12 | ||
| 2020-10-11 | Create test for case when posting infraction fails | -1/+12 | ||
| 2020-10-11 | Revert recent walrus operator change | -1/+2 | ||
| 2020-10-11 | Create test for case when user already have active Voice Ban | -2/+11 | ||
| 2020-10-11 | Simplify post infraction calling and None check | -2/+1 | ||
| 2020-10-11 | Create test for case when trying to voice ban user who haven't passed gate | -2/+11 | ||
| 2020-10-11 | Create test for voice unban | -0/+6 | ||
| 2020-10-11 | Create test for temporary voice ban | -1/+7 | ||
| 2020-10-11 | Create test for permanent voice ban | -0/+17 | ||
| 2020-10-11 | Improve voice gate messages deletion | -2/+8 | ||
| 2020-10-11 | Suppress Voice Gate cog InWhiteListCheckFailure | -0/+6 | ||
| 2020-10-11 | Implement Voice Verifying command and delete message in voice gate | -1/+111 | ||
| 2020-10-11 | Remove not used imports | -1/+0 | ||
| 2020-10-11 | Implement voice bans (temporary and permanent) | -0/+85 | ||
| 2020-10-11 | Add voice ban icons and show appeal footer for voice ban | -1/+2 | ||
| 2020-10-11 | Add Metricity DB URL to site (docker-compose.yml) | -0/+1 | ||
| 2020-10-10 | Duckpond: Add a list of already ducked messages | -1/+3 | ||
| Previously race conditions caused the messages to be processed again before knowing the white check mark reaction got added, this seems to solve it | ||||
| 2020-10-10 | Add voice gate configuration to config-default.yml | -0/+6 | ||
| 2020-10-10 | Define Voice Gate channel, role and requirement in constants.py | -0/+10 | ||