mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-13 21:35:02 +00:00
13 lines
480 B
TypeScript
13 lines
480 B
TypeScript
import { ZeppelinPluginInfo } from "../../types";
|
|
import { trimPluginDescription } from "../../utils";
|
|
import { zPersistConfig } from "./types";
|
|
|
|
export const persistPluginInfo: ZeppelinPluginInfo = {
|
|
prettyName: "Persist",
|
|
description: trimPluginDescription(`
|
|
Re-apply roles or nicknames for users when they rejoin the server.
|
|
Mute roles are re-applied automatically, this plugin is not required for that.
|
|
`),
|
|
configSchema: zPersistConfig,
|
|
showInDocs: true,
|
|
};
|