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