forked from Galactic/galactic-bot
auth stuff
This commit is contained in:
parent
3c7a80651d
commit
90c659858c
@ -56,7 +56,7 @@ class ImportCommand extends SlashCommand {
|
|||||||
version = version?.value || '3';
|
version = version?.value || '3';
|
||||||
|
|
||||||
await invoker.reply({ index: 'COMMAND_IMPORT_WORKING', emoji: 'loading' });
|
await invoker.reply({ index: 'COMMAND_IMPORT_WORKING', emoji: 'loading' });
|
||||||
const result = await this[subcommand.name](guild, version, overwrite.value);
|
const result = await this[subcommand.name](guild, version, overwrite?.value);
|
||||||
|
|
||||||
// This looks ridiculous but it's to keep track of what's been imported
|
// This looks ridiculous but it's to keep track of what's been imported
|
||||||
settings = guild._settings;
|
settings = guild._settings;
|
||||||
@ -72,7 +72,7 @@ class ImportCommand extends SlashCommand {
|
|||||||
|
|
||||||
const migrator = new InfractionMigrator(this.client, guild, {
|
const migrator = new InfractionMigrator(this.client, guild, {
|
||||||
host: version === '2' ? MONGODB_V2_HOST : MONGODB_HOST,
|
host: version === '2' ? MONGODB_V2_HOST : MONGODB_HOST,
|
||||||
username: MONGODB_USERNAME,
|
username: version === '2' ? null : MONGODB_USERNAME,
|
||||||
password: MONGODB_PASSWORD,
|
password: MONGODB_PASSWORD,
|
||||||
database: dbs[version], // Default to v3
|
database: dbs[version], // Default to v3
|
||||||
version
|
version
|
||||||
@ -113,7 +113,7 @@ class ImportCommand extends SlashCommand {
|
|||||||
// const { MONGODB_HOST, MONGODB_USERNAME, MONGODB_PASSWORD } = process.env;
|
// const { MONGODB_HOST, MONGODB_USERNAME, MONGODB_PASSWORD } = process.env;
|
||||||
const migrator = new SettingsMigrator(this.client, guild, {
|
const migrator = new SettingsMigrator(this.client, guild, {
|
||||||
host: version === '2' ? MONGODB_V2_HOST : MONGODB_HOST,
|
host: version === '2' ? MONGODB_V2_HOST : MONGODB_HOST,
|
||||||
username: MONGODB_USERNAME,
|
username: version === '2' ? null : MONGODB_USERNAME,
|
||||||
password: MONGODB_PASSWORD,
|
password: MONGODB_PASSWORD,
|
||||||
database: dbs[version], // Default to v3
|
database: dbs[version], // Default to v3
|
||||||
version
|
version
|
||||||
|
Loading…
Reference in New Issue
Block a user