mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-15 06:05:03 +00:00
feat: update knub; use base Knub types for plugins
This commit is contained in:
parent
4597b83cda
commit
c2ae6d53d8
90 changed files with 713 additions and 607 deletions
13
backend/src/plugins/Persist/info.ts
Normal file
13
backend/src/plugins/Persist/info.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
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,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue