mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 05:41:51 +00:00
Update descriptions for Censor/Spam to point to Automod for more advanced functionality
This commit is contained in:
parent
154104233f
commit
a2395d974a
2 changed files with 6 additions and 1 deletions
|
@ -44,6 +44,7 @@ export class CensorPlugin extends ZeppelinPlugin<TConfigSchema> {
|
||||||
prettyName: "Censor",
|
prettyName: "Censor",
|
||||||
description: trimPluginDescription(`
|
description: trimPluginDescription(`
|
||||||
Censor words, tokens, links, regex, etc.
|
Censor words, tokens, links, regex, etc.
|
||||||
|
For more advanced filtering, check out the Automod plugin!
|
||||||
`),
|
`),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ import moment from "moment-timezone";
|
||||||
import { SavedMessage } from "../data/entities/SavedMessage";
|
import { SavedMessage } from "../data/entities/SavedMessage";
|
||||||
import { GuildSavedMessages } from "../data/GuildSavedMessages";
|
import { GuildSavedMessages } from "../data/GuildSavedMessages";
|
||||||
import { GuildMutes } from "../data/GuildMutes";
|
import { GuildMutes } from "../data/GuildMutes";
|
||||||
import { ZeppelinPlugin } from "./ZeppelinPlugin";
|
import { trimPluginDescription, ZeppelinPlugin } from "./ZeppelinPlugin";
|
||||||
import { MuteResult, MutesPlugin } from "./Mutes";
|
import { MuteResult, MutesPlugin } from "./Mutes";
|
||||||
import { CasesPlugin } from "./Cases";
|
import { CasesPlugin } from "./Cases";
|
||||||
import * as t from "io-ts";
|
import * as t from "io-ts";
|
||||||
|
@ -78,6 +78,10 @@ export class SpamPlugin extends ZeppelinPlugin<TConfigSchema> {
|
||||||
|
|
||||||
public static pluginInfo = {
|
public static pluginInfo = {
|
||||||
prettyName: "Spam protection",
|
prettyName: "Spam protection",
|
||||||
|
description: trimPluginDescription(`
|
||||||
|
Basic spam detection and auto-muting.
|
||||||
|
For more advanced spam filtering, check out the Automod plugin!
|
||||||
|
`),
|
||||||
};
|
};
|
||||||
|
|
||||||
protected logs: GuildLogs;
|
protected logs: GuildLogs;
|
||||||
|
|
Loading…
Add table
Reference in a new issue