mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-13 21:35:02 +00:00
11 lines
404 B
TypeScript
11 lines
404 B
TypeScript
import { ZeppelinPluginDocs } from "../../types.js";
|
|
import { zAutoDeleteConfig } from "./types.js";
|
|
|
|
export const autoDeletePluginDocs: ZeppelinPluginDocs = {
|
|
type: "stable",
|
|
configSchema: zAutoDeleteConfig,
|
|
|
|
prettyName: "Auto-delete",
|
|
description: "Allows Zeppelin to auto-delete messages from a channel after a delay",
|
|
configurationGuide: "Maximum deletion delay is currently 5 minutes",
|
|
};
|