aboutsummaryrefslogtreecommitdiff
path: root/src/lib/models/Guild.ts
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-09-06 11:30:16 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-09-06 11:30:16 -0400
commitb2ea3e7f142d47d19819893eb1c5fe9e8a31f87c (patch)
treec69b6a93c37c81c7b305cf95713b8c3cbf0a9d22 /src/lib/models/Guild.ts
parente3c116e0f4b741032fe777936fdf5d80f0b011e6 (diff)
downloadtanzanite-b2ea3e7f142d47d19819893eb1c5fe9e8a31f87c.tar.gz
tanzanite-b2ea3e7f142d47d19819893eb1c5fe9e8a31f87c.tar.bz2
tanzanite-b2ea3e7f142d47d19819893eb1c5fe9e8a31f87c.zip
change channel overrides to not use superusers
Diffstat (limited to 'src/lib/models/Guild.ts')
-rw-r--r--src/lib/models/Guild.ts21
1 files changed, 20 insertions, 1 deletions
diff --git a/src/lib/models/Guild.ts b/src/lib/models/Guild.ts
index a4780fd..b155330 100644
--- a/src/lib/models/Guild.ts
+++ b/src/lib/models/Guild.ts
@@ -46,6 +46,12 @@ export const guildSettingsObj = {
description: 'Roles assigned to users on join who do not have sticky role information.',
type: 'role-array',
configurable: true
+ },
+ bypassChannelBlacklist: {
+ name: 'Bypass Channel Blacklist',
+ description: 'These users will be able to use commands in channels blacklisted.',
+ type: 'user-array',
+ configurable: true
}
};
export type GuildSettings = keyof typeof guildSettingsObj;
@@ -130,6 +136,7 @@ export interface GuildModel {
enabledFeatures: GuildFeatures[];
joinRoles: Snowflake[];
logChannels: LogChannelDB;
+ bypassChannelBlacklist: Snowflake[];
}
export interface GuildModelCreationAttributes {
@@ -147,6 +154,7 @@ export interface GuildModelCreationAttributes {
enabledFeatures?: GuildFeatures[];
joinRoles?: Snowflake[];
logChannels?: LogChannelDB;
+ bypassChannelBlacklist?: Snowflake[];
}
export class Guild extends BaseModel<GuildModel, GuildModelCreationAttributes> implements GuildModel {
@@ -290,6 +298,16 @@ export class Guild extends BaseModel<GuildModel, GuildModelCreationAttributes> i
throw new Error(NEVER_USED);
}
+ /**
+ * These users will be able to use commands in channels blacklisted
+ */
+ public get bypassChannelBlacklist(): Snowflake[] {
+ throw new Error(NEVER_USED);
+ }
+ public set bypassChannelBlacklist(_: Snowflake[]) {
+ throw new Error(NEVER_USED);
+ }
+
public static initModel(sequelize: Sequelize, client: BushClient): void {
Guild.init(
{
@@ -332,7 +350,8 @@ export class Guild extends BaseModel<GuildModel, GuildModelCreationAttributes> i
},
allowNull: false,
defaultValue: '{}'
- }
+ },
+ bypassChannelBlacklist: jsonArrayInit('bypassChannelBlacklist')
},
{ sequelize: sequelize }
);