mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-16 14:11:50 +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 { AddDashboardUserCmd } from "./commands/AddDashboardUserCmd";
|
||||||
import { RemoveDashboardUserCmd } from "./commands/RemoveDashboardUserCmd";
|
import { RemoveDashboardUserCmd } from "./commands/RemoveDashboardUserCmd";
|
||||||
import { Configs } from "../../data/Configs";
|
import { Configs } from "../../data/Configs";
|
||||||
|
import { ApiPermissionAssignments } from "../../data/ApiPermissionAssignments";
|
||||||
|
|
||||||
const defaultOptions = {
|
const defaultOptions = {
|
||||||
config: {
|
config: {
|
||||||
|
@ -42,6 +43,7 @@ export const BotControlPlugin = zeppelinGlobalPlugin<BotControlPluginType>()("bo
|
||||||
pluginData.state.archives = new GuildArchives(0);
|
pluginData.state.archives = new GuildArchives(0);
|
||||||
pluginData.state.allowedGuilds = new AllowedGuilds();
|
pluginData.state.allowedGuilds = new AllowedGuilds();
|
||||||
pluginData.state.configs = new Configs();
|
pluginData.state.configs = new Configs();
|
||||||
|
pluginData.state.apiPermissionAssignments = new ApiPermissionAssignments();
|
||||||
|
|
||||||
if (getActiveReload()) {
|
if (getActiveReload()) {
|
||||||
const [guildId, channelId] = getActiveReload();
|
const [guildId, channelId] = getActiveReload();
|
||||||
|
|
Loading…
Add table
Reference in a new issue