DiscordTickets/user/example.config.js

60 lines
1.6 KiB
JavaScript
Raw Normal View History

2021-02-15 20:34:59 +02:00
/**
* ###############################################################################################
* ____ _ _____ _ _
* | _ \ (_) ___ ___ ___ _ __ __| | |_ _| (_) ___ | | __ ___ | |_ ___
* | | | | | | / __| / __| / _ \ | '__| / _` | | | | | / __| | |/ / / _ \ | __| / __|
* | |_| | | | \__ \ | (__ | (_) | | | | (_| | | | | | | (__ | < | __/ | |_ \__ \
* |____/ |_| |___/ \___| \___/ |_| \__,_| |_| |_| \___| |_|\_\ \___| \__| |___/
*
* ---------------------
* Quick Start
* ---------------------
*
* > For detailed instructions, visit the documentation: https://eartharoid.github.io/discordtickets
*
* ---------------------
* Support
* ---------------------
*
* > Discord support server: https://go.eartharoid.me/discord
* > Wiki: https://eartharoid.github.io/discordtickets
*
* ###############################################################################################
*/
module.exports = {
2021-02-17 01:35:31 +02:00
debug: false,
defaults: {
colour: '#009999',
locale: 'en-GB'
},
logs: {
enabled: true,
keep_for: 30
},
2021-02-17 15:24:33 +02:00
max_listeners: 10,
2021-02-17 01:35:31 +02:00
plugins: [
// 'dsctickets.plugin-name'
'discordtickets-portal'
],
2021-02-15 20:34:59 +02:00
portal: {
enabled: false,
host: 'https://tickets.example.com'
},
presences: [
{
2021-02-17 00:34:20 +02:00
activity: '/new | /help',
2021-02-15 20:34:59 +02:00
type: 'PLAYING'
},
{
2021-02-17 00:34:20 +02:00
activity: 'with tickets | /help',
2021-02-15 20:34:59 +02:00
type: 'PLAYING'
},
{
2021-02-17 00:34:20 +02:00
activity: 'for new tickets | /help',
2021-02-15 20:34:59 +02:00
type: 'WATCHING'
2021-02-16 16:48:04 +02:00
},
2021-02-15 20:34:59 +02:00
],
2021-02-17 15:24:33 +02:00
super_secret_setting: true,
2021-02-15 20:34:59 +02:00
update_notice: true,
};