3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-07-07 11:07:19 +00:00
zeppelin/backend/src/plugins/Spam/docs.ts
2024-08-11 02:05:23 +03:00

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,
};