mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-13 21:35:02 +00:00
14 lines
438 B
TypeScript
14 lines
438 B
TypeScript
import { ZeppelinPluginDocs } from "../../types.js";
|
|
import { trimPluginDescription } from "../../utils.js";
|
|
import { zCensorConfig } from "./types.js";
|
|
|
|
export const censorPluginDocs: ZeppelinPluginDocs = {
|
|
type: "legacy",
|
|
configSchema: zCensorConfig,
|
|
|
|
prettyName: "Censor",
|
|
description: trimPluginDescription(`
|
|
Censor words, tokens, links, regex, etc.
|
|
For more advanced filtering, check out the Automod plugin!
|
|
`),
|
|
};
|