mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-07-07 11:07:19 +00:00
12 lines
438 B
TypeScript
12 lines
438 B
TypeScript
import { ZeppelinPluginInfo } from "../../types";
|
|
import { trimPluginDescription } from "../../utils";
|
|
import { zModActionsConfig } from "./types";
|
|
|
|
export const modActionsPluginInfo: ZeppelinPluginInfo = {
|
|
prettyName: "Mod actions",
|
|
showInDocs: true,
|
|
description: trimPluginDescription(`
|
|
This plugin contains the 'typical' mod actions such as warning, muting, kicking, banning, etc.
|
|
`),
|
|
configSchema: zModActionsConfig,
|
|
};
|