mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-07-07 19:17:19 +00:00
14 lines
460 B
TypeScript
14 lines
460 B
TypeScript
import { ZeppelinPluginInfo } from "../../types.js";
|
|
import { trimPluginDescription } from "../../utils.js";
|
|
import { zSpamConfig } from "./types.js";
|
|
|
|
export const spamPluginInfo: ZeppelinPluginInfo = {
|
|
showInDocs: true,
|
|
prettyName: "Spam protection",
|
|
description: trimPluginDescription(`
|
|
Basic spam detection and auto-muting.
|
|
For more advanced spam filtering, check out the Automod plugin!
|
|
`),
|
|
legacy: true,
|
|
configSchema: zSpamConfig,
|
|
};
|