mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 05:41:51 +00:00
BotControl: fix missing repository
This commit is contained in:
parent
f3eefdc5b2
commit
b158817bff
1 changed files with 2 additions and 0 deletions
|
@ -14,6 +14,7 @@ import { DisallowServerCmd } from "./commands/DisallowServerCmd";
|
|||
import { AddDashboardUserCmd } from "./commands/AddDashboardUserCmd";
|
||||
import { RemoveDashboardUserCmd } from "./commands/RemoveDashboardUserCmd";
|
||||
import { Configs } from "../../data/Configs";
|
||||
import { ApiPermissionAssignments } from "../../data/ApiPermissionAssignments";
|
||||
|
||||
const defaultOptions = {
|
||||
config: {
|
||||
|
@ -42,6 +43,7 @@ export const BotControlPlugin = zeppelinGlobalPlugin<BotControlPluginType>()("bo
|
|||
pluginData.state.archives = new GuildArchives(0);
|
||||
pluginData.state.allowedGuilds = new AllowedGuilds();
|
||||
pluginData.state.configs = new Configs();
|
||||
pluginData.state.apiPermissionAssignments = new ApiPermissionAssignments();
|
||||
|
||||
if (getActiveReload()) {
|
||||
const [guildId, channelId] = getActiveReload();
|
||||
|
|
Loading…
Add table
Reference in a new issue