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
14
backend/src/plugins/LocateUser/info.ts
Normal file
14
backend/src/plugins/LocateUser/info.ts
Normal file
|
@ -0,0 +1,14 @@
|
|||
import { ZeppelinPluginInfo } from "../../types";
|
||||
import { trimPluginDescription } from "../../utils";
|
||||
import { zLocateUserConfig } from "./types";
|
||||
|
||||
export const locateUserPluginInfo: ZeppelinPluginInfo = {
|
||||
prettyName: "Locate user",
|
||||
description: trimPluginDescription(`
|
||||
This plugin allows users with access to the commands the following:
|
||||
* Instantly receive an invite to the voice channel of a user
|
||||
* Be notified as soon as a user switches or joins a voice channel
|
||||
`),
|
||||
configSchema: zLocateUserConfig,
|
||||
showInDocs: true,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue