mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-16 22:21:51 +00:00
Disable/hide some interaction-based features until after release
This commit is contained in:
parent
0e7cf9715f
commit
a179119f2e
2 changed files with 4 additions and 4 deletions
|
@ -33,8 +33,10 @@ const defaultOptions: PluginOptions<ContextMenuPluginType> = {
|
||||||
|
|
||||||
export const ContextMenuPlugin = zeppelinGuildPlugin<ContextMenuPluginType>()({
|
export const ContextMenuPlugin = zeppelinGuildPlugin<ContextMenuPluginType>()({
|
||||||
name: "context_menu",
|
name: "context_menu",
|
||||||
|
showInDocs: false,
|
||||||
|
|
||||||
configSchema: ConfigSchema,
|
configSchema: ConfigSchema,
|
||||||
|
dependencies: () => [MutesPlugin, LogsPlugin, UtilityPlugin],
|
||||||
defaultOptions,
|
defaultOptions,
|
||||||
|
|
||||||
// prettier-ignore
|
// prettier-ignore
|
||||||
|
@ -51,6 +53,4 @@ export const ContextMenuPlugin = zeppelinGuildPlugin<ContextMenuPluginType>()({
|
||||||
afterLoad(pluginData) {
|
afterLoad(pluginData) {
|
||||||
loadAllCommands(pluginData);
|
loadAllCommands(pluginData);
|
||||||
},
|
},
|
||||||
|
|
||||||
dependencies: () => [MutesPlugin, LogsPlugin, UtilityPlugin],
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -117,13 +117,13 @@ export const ReactionRolesPlugin = zeppelinGuildPlugin<ReactionRolesPluginType>(
|
||||||
RefreshReactionRolesCmd,
|
RefreshReactionRolesCmd,
|
||||||
ClearReactionRolesCmd,
|
ClearReactionRolesCmd,
|
||||||
InitReactionRolesCmd,
|
InitReactionRolesCmd,
|
||||||
PostButtonRolesCmd,
|
// PostButtonRolesCmd,
|
||||||
],
|
],
|
||||||
|
|
||||||
// prettier-ignore
|
// prettier-ignore
|
||||||
events: [
|
events: [
|
||||||
AddReactionRoleEvt,
|
AddReactionRoleEvt,
|
||||||
ButtonInteractionEvt,
|
// ButtonInteractionEvt,
|
||||||
MessageDeletedEvt,
|
MessageDeletedEvt,
|
||||||
],
|
],
|
||||||
configPreprocessor,
|
configPreprocessor,
|
||||||
|
|
Loading…
Add table
Reference in a new issue