Compare commits
2 Commits
133f68276b
...
32d18716cb
Author | SHA1 | Date |
---|---|---|
|
32d18716cb | |
|
1c115eaa6c |
|
@ -3,6 +3,7 @@
|
||||||
"xan.userBans",
|
"xan.userBans",
|
||||||
"xan.serverBans",
|
"xan.serverBans",
|
||||||
"xan.messages",
|
"xan.messages",
|
||||||
|
"xan.messageDelivery",
|
||||||
"xan.networks",
|
"xan.networks",
|
||||||
"xan.server_prefs"
|
"xan.server_prefs"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
const { SlashCommandBuilder } = require('discord.js');
|
const { SlashCommandBuilder, PermissionFlagsBits } = require('discord.js');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
data: new SlashCommandBuilder()
|
data: new SlashCommandBuilder()
|
||||||
.setName('setup')
|
.setName('setup')
|
||||||
|
.setDefaultMemberPermissions(PermissionFlagsBits.ManageChannels)
|
||||||
.addChannelOption((o) => o
|
.addChannelOption((o) => o
|
||||||
.setName("channel")
|
.setName("channel")
|
||||||
.setDescription("Channel to Chat with Xantic")
|
.setDescription("Channel to Chat with Xantic")
|
||||||
|
|
|
@ -9,7 +9,7 @@ module.exports = {
|
||||||
|
|
||||||
// Database Configurations
|
// Database Configurations
|
||||||
// Possible Options ["mongod" , "mysqld"]
|
// Possible Options ["mongod" , "mysqld"]
|
||||||
database_adapter: "mysqld",
|
database_adapter: "mongod",
|
||||||
// If using MongoDB
|
// If using MongoDB
|
||||||
database_uri: process.env['database_uri'] || "",
|
database_uri: process.env['database_uri'] || "",
|
||||||
database_name: "xantic",
|
database_name: "xantic",
|
||||||
|
|
Loading…
Reference in New Issue