aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/commands/config/blacklist.ts6
-rw-r--r--src/commands/config/disable.ts3
-rw-r--r--src/lib/models/Global.ts6
3 files changed, 6 insertions, 9 deletions
diff --git a/src/commands/config/blacklist.ts b/src/commands/config/blacklist.ts
index 9047c41..8e5d703 100644
--- a/src/commands/config/blacklist.ts
+++ b/src/commands/config/blacklist.ts
@@ -77,10 +77,8 @@ export default class BlacklistCommand extends BushCommand {
if (global) {
if (action === 'toggle') {
- const blacklistedUsers = (await Global.findByPk(this.client.config.environment))
- .blacklistedUsers;
- const blacklistedChannels = (await Global.findByPk(this.client.config.environment))
- .blacklistedChannels;
+ const blacklistedUsers = (await Global.findByPk(this.client.config.environment)).blacklistedUsers;
+ const blacklistedChannels = (await Global.findByPk(this.client.config.environment)).blacklistedChannels;
action = blacklistedUsers.includes(targetID) || blacklistedChannels.includes(targetID) ? 'unblacklist' : 'blacklist';
}
const success = await this.client.util
diff --git a/src/commands/config/disable.ts b/src/commands/config/disable.ts
index f6caf88..ed9bf7d 100644
--- a/src/commands/config/disable.ts
+++ b/src/commands/config/disable.ts
@@ -71,8 +71,7 @@ export default class DisableCommand extends BushCommand {
if (global) {
if (action === 'toggle') {
- const disabledCommands = (await Global.findByPk(this.client.config.environment))
- .disabledCommands;
+ const disabledCommands = (await Global.findByPk(this.client.config.environment)).disabledCommands;
action = disabledCommands.includes(commandID) ? 'disable' : 'enable';
}
const success = await this.client.util
diff --git a/src/lib/models/Global.ts b/src/lib/models/Global.ts
index 08392c5..ee9f43c 100644
--- a/src/lib/models/Global.ts
+++ b/src/lib/models/Global.ts
@@ -3,7 +3,7 @@ import { DataTypes, Sequelize } from 'sequelize';
import { BaseModel } from './BaseModel';
export interface GlobalModel {
- environment: 'production' | 'development'|'beta';
+ environment: 'production' | 'development' | 'beta';
superUsers: Snowflake[];
disabledCommands: string[];
blacklistedUsers: Snowflake[];
@@ -12,7 +12,7 @@ export interface GlobalModel {
}
export interface GlobalModelCreationAttributes {
- environment: 'production' | 'development'|'beta';
+ environment: 'production' | 'development' | 'beta';
superUsers?: Snowflake[];
disabledCommands?: string[];
blacklistedUsers?: Snowflake[];
@@ -24,7 +24,7 @@ export class Global extends BaseModel<GlobalModel, GlobalModelCreationAttributes
/**
* The bot's environment.
*/
- environment: 'production' | 'development'|'beta';
+ environment: 'production' | 'development' | 'beta';
/**
* Trusted users.
*/