Compare commits

..

2 Commits

Author SHA1 Message Date
ui_creeperlv 32d18716cb Fix Permission Issue 2024-03-06 18:47:23 +05:30
ui_creeperlv 1c115eaa6c Added `messageDelivery` to collection_table.json 2024-03-06 18:35:40 +05:30
3 changed files with 4 additions and 2 deletions

View File

@ -3,6 +3,7 @@
"xan.userBans",
"xan.serverBans",
"xan.messages",
"xan.messageDelivery",
"xan.networks",
"xan.server_prefs"
]

View File

@ -1,8 +1,9 @@
const { SlashCommandBuilder } = require('discord.js');
const { SlashCommandBuilder, PermissionFlagsBits } = require('discord.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('setup')
.setDefaultMemberPermissions(PermissionFlagsBits.ManageChannels)
.addChannelOption((o) => o
.setName("channel")
.setDescription("Channel to Chat with Xantic")

View File

@ -9,7 +9,7 @@ module.exports = {
// Database Configurations
// Possible Options ["mongod" , "mysqld"]
database_adapter: "mysqld",
database_adapter: "mongod",
// If using MongoDB
database_uri: process.env['database_uri'] || "",
database_name: "xantic",