-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for silently filtered words (#42)
* Add example config file * Add /silent_filter command to mark/unmark commands as silently filtered * Show silent filtered words in /filter list * Ignore silently words in commands that stop when filter triggered * For silently filtered words, show a report and don't delete the word * Rename `ignorable_words` to `has_only_silent_filtered_words` for clarity * Add missing newline to config example
- Loading branch information
1 parent
b45725a
commit 5222b03
Showing
8 changed files
with
91 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"channels": { | ||
"applenews": 123, | ||
"booster_emoji": 123, | ||
"emoji_logs": 123, | ||
"private_logs": 123, | ||
"public_logs": 123, | ||
"bot_commands": 123, | ||
"jailbreak": 123, | ||
"general": 123, | ||
"development": 123, | ||
"genius_bar": 123, | ||
"reports": 123, | ||
"rules": 123, | ||
"common_issues": 123, | ||
"sub_news": 123 | ||
}, | ||
"roles": { | ||
"administrator": 123, | ||
"moderator": 123, | ||
"sub_mod": 123, | ||
"genius": 123, | ||
"developer": 123, | ||
"birthday": 123, | ||
"member_ultra": 123, | ||
"member_one": 123, | ||
"member_edition": 123, | ||
"member_pro": 123, | ||
"member_plus": 123, | ||
"sub_news": 123, | ||
"aaron_role": 123 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters