aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
* Use correct method for nickname filterGravatar Boris Muratov2023-04-07-1/+1
|
* Handle archival task of deleted postGravatar Boris Muratov2023-04-07-0/+6
|
* Remove cooldown when post is deletedGravatar Boris Muratov2023-04-07-1/+5
|
* Add thread name filteringGravatar Boris Muratov2023-04-07-35/+52
| | | | Additionally fixes the nickname filter not using the right object to take action and report.
* Merge pull request #2516 from python-discord/infr_emojiGravatar Boris Muratov2023-04-07-1/+1
|\ | | | | Change the infractions button emoji to a notepad
| * Change the infractions button emoji to a notepadGravatar Boris Muratov2023-04-07-1/+1
|/
* Merge pull request #2515 from python-discord/disable_name_checkGravatar Boris Muratov2023-04-06-2/+2
|\ | | | | Temporarily disable help post name check
| * Temporarily disable help post name checkGravatar Boris Muratov2023-04-06-2/+2
|/ | | | This doesn't work at the moment with the new filtering and a proper fix will be made later
* Merge pull request #2514 from python-discord/fix_filtersGravatar Boris Muratov2023-04-06-6/+6
|\ | | | | Use the right variables in antispam
| * Use the right variables in antispamGravatar Boris Muratov2023-04-06-6/+6
|/
* Merge pull request #2390 from python-discord/new-filtersGravatar Boris Muratov2023-04-06-3782/+7265
|\ | | | | New Filtering System
| * Merge branch 'main' into new-filtersGravatar Boris Muratov2023-04-06-100/+101
| |\ | |/ |/|
* | Bump rapidfuzz from 2.13.7 to 2.15.0 (#2507)Gravatar dependabot[bot]2023-04-06-92/+92
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [rapidfuzz](https://github.com/maxbachmann/RapidFuzz) from 2.13.7 to 2.15.0. - [Release notes](https://github.com/maxbachmann/RapidFuzz/releases) - [Changelog](https://github.com/maxbachmann/RapidFuzz/blob/main/CHANGELOG.rst) - [Commits](https://github.com/maxbachmann/RapidFuzz/compare/v2.13.7...v2.15.0) --- updated-dependencies: - dependency-name: rapidfuzz dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* | Bump sentry-sdk from 1.18.0 to 1.19.1 (#2511)Gravatar dependabot[bot]2023-04-05-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [sentry-sdk](https://github.com/getsentry/sentry-python) from 1.18.0 to 1.19.1. - [Release notes](https://github.com/getsentry/sentry-python/releases) - [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md) - [Commits](https://github.com/getsentry/sentry-python/compare/1.18.0...1.19.1) --- updated-dependencies: - dependency-name: sentry-sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* | Bump pre-commit from 3.2.1 to 3.2.2 (#2509)Gravatar dependabot[bot]2023-04-05-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [pre-commit](https://github.com/pre-commit/pre-commit) from 3.2.1 to 3.2.2. - [Release notes](https://github.com/pre-commit/pre-commit/releases) - [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md) - [Commits](https://github.com/pre-commit/pre-commit/compare/v3.2.1...v3.2.2) --- updated-dependencies: - dependency-name: pre-commit dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
| * Clarify commentGravatar Boris Muratov2023-04-06-1/+1
| |
| * .__origin__ -> get_originGravatar Boris Muratov2023-04-06-12/+21
| |
| * Add in_guild attribute to FilterContextGravatar Boris Muratov2023-04-06-4/+8
| |
| * Don't notify the user for filters triggered in DMs.Gravatar Boris Muratov2023-04-06-4/+9
| |
| * Fix settings parser to work when no description and template firstGravatar Boris Muratov2023-04-06-1/+1
| |
| * Adjust to site using dicts in additional_settings instead of JSON stringsGravatar Boris Muratov2023-04-06-8/+6
| | | | | | | | This is to make sure that the unique constraint always compares between dicts instead of sometimes dealing with nulls.
| * Fix testGravatar Boris Muratov2023-04-05-1/+1
| |
| * Fix infraction duration display for filter listsGravatar Boris Muratov2023-04-05-1/+1
| |
| * Specify edited setting name in confirmation messageGravatar Boris Muratov2023-04-05-4/+8
| |
| * Escape markdown in alert matchesGravatar Boris Muratov2023-04-05-1/+1
| |
| * `domain/subdomains` -> `domain/only_subdomains` for clarityGravatar Boris Muratov2023-04-05-6/+6
| | | | | | | | Also changes the alert to use the full domain instead of the filter content.
| * Handle infracted user not being on the serverGravatar Boris Muratov2023-04-05-0/+7
| | | | | | | | This shouldn't happen in production, but just in case
| * Handle server possibly not having an iconGravatar Boris Muratov2023-04-05-1/+2
| |
| * Properly format alert when there's no file extensionGravatar Boris Muratov2023-04-05-1/+1
| |
| * Code style and clarificationsGravatar Boris Muratov2023-04-05-18/+17
| |
| * Merge branch 'main' into new-filtersGravatar Boris Muratov2023-04-05-418/+505
| |\ | |/ |/|
* | Merge pull request #2506 from python-discord/new-helpers-endGravatar Boris Muratov2023-04-02-224/+1
|\ \ | | | | | | Remove self-assignable helpers functionality
| * | Remove self-assignable helpers functionalityGravatar mbaruh2023-04-02-224/+1
|/ /
* | Merge pull request #2489 from shtlrs/shtlrs/get-rid-of-site-config-varGravatar Amrou Bellalouna2023-04-01-16/+10
|\ \ | | | | | | Remove usage of `site` config variable
| * \ Merge branch 'main' into shtlrs/get-rid-of-site-config-varGravatar shtlrs2023-04-01-3/+3
| |\ \ | |/ / |/| |
* | | Merge pull request #2503 from python-discord/update_ping_cooldownGravatar Steele Farnsworth2023-04-01-3/+3
|\ \ \ | | | | | | | | Update ping cooldown for helpers
| * | | Update ping cooldown for helpersGravatar bradtimmis2023-04-01-3/+3
|/ / /
| * | Merge branch 'main' into shtlrs/get-rid-of-site-config-varGravatar shtlrs2023-04-01-69/+379
| |\ \ | |/ / |/| |
* | | Merge pull request #2502 from python-discord/helper-roleGravatar Steele Farnsworth2023-03-31-1/+3
|\ \ \ | | | | | | | | Make new helper role pingable for help request.
| * | | Fix import order.Gravatar Steele Farnsworth2023-03-31-2/+1
| | | |
| * | | Add blank line for linting.Gravatar Steele Farnsworth2023-03-31-0/+1
| | | |
| * | | Merge branch 'main' into helper-roleGravatar Steele Farnsworth2023-03-31-285/+417
| |\ \ \ | |/ / / |/| | |
* | | | Merge pull request #2501 from python-discord/helper-roleGravatar Dennis Pham2023-03-31-1/+222
|\ \ \ \ | | | | | | | | | | Staff self-assignment procedure
| * \ \ \ Merge branch 'main' into helper-roleGravatar Boris Muratov2023-04-01-285/+417
| |\ \ \ \ | |/ / / / |/| | | |
* | | | | Merge pull request #2467 from shtlrs/native-forum-channel-supportGravatar Boris Muratov2023-04-01-68/+155
|\ \ \ \ \ | | | | | | | | | | | | Create python-help forum channel in `botstrap`
| * \ \ \ \ Merge branch 'main' into native-forum-channel-supportGravatar Boris Muratov2023-04-01-5/+5
| |\ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | return value from SilencedDictGravatar shtlrs2023-03-31-1/+1
| | | | | |
| * | | | | bring back the check of python help channelGravatar shtlrs2023-03-31-7/+11
| | | | | | | | | | | | | | | | | | | | | | | | this also updates the logs in SilencedDict
| * | | | | introduce SilencedDictGravatar shtlrs2023-03-30-10/+27
| | | | | |
| * | | | | add type annotation for guild_idGravatar shtlrs2023-03-30-1/+1
| | | | | |