mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-11-05 12:23:09 +02:00
95f76716ed
* feat: make command handler slash command-ready Only `help` and `settings` commands work so far * feat(commands): finish new settings command * fix(settings): convert `roles` and `ping` to an array * fix(commands): make `add` a slash command * fix(commands): make `blacklist` a slash command * fix(commands): remove URLs from `help` command * Add weblate badge and overview image * Update sponsors * sqlite things * imrpovements * update eslint rules * (⚠ untested) close command * fix: default locale for getting command option names * Update README.md * Update README.md * Update README.md * update new command to slash commands and fix close command * fixes and improvements * fix: closing a ticket when the creator has left * Revert "fix: closing a ticket when the creator has left" This reverts commit afc40ae17077782e344fd8cee03a089966c2347e. * fix: closing a ticket when the creator has left * fix: localisation issues in settings command * fix: delete category channel * New button and select panels + updated message panels Includes new options for panel embed message image and thumbnail Co-Authored-By: Puneet Gopinath <baalkrshna@gmail.com> Co-Authored-By: thevisuales <6569806+thevisuales@users.noreply.github.com> * Finish converting to buttons, added close button Co-Authored-By: Puneet Gopinath <baalkrshna@gmail.com> Co-Authored-By: thevisuales <6569806+thevisuales@users.noreply.github.com> * fully convert to slash commands * re-add "... has created a ticket" message * locales * fix add and remove commands * fix remove command * fix stats command * eslint Co-authored-by: Puneet Gopinath <baalkrshna@gmail.com> Co-authored-by: thevisuales <6569806+thevisuales@users.noreply.github.com>
56 lines
1.6 KiB
JavaScript
56 lines
1.6 KiB
JavaScript
/**
|
|
* ###############################################################################################
|
|
* ____ _ _____ _ _
|
|
* | _ \ (_) ___ ___ ___ _ __ __| | |_ _| (_) ___ | | __ ___ | |_ ___
|
|
* | | | | | | / __| / __| / _ \ | '__| / _` | | | | | / __| | |/ / / _ \ | __| / __|
|
|
* | |_| | | | \__ \ | (__ | (_) | | | | (_| | | | | | | (__ | < | __/ | |_ \__ \
|
|
* |____/ |_| |___/ \___| \___/ |_| \__,_| |_| |_| \___| |_|\_\ \___| \__| |___/
|
|
*
|
|
* ---------------------
|
|
* Support
|
|
* ---------------------
|
|
*
|
|
* > Documentation: https://discordtickets.app
|
|
* > Discord support server: https://go.eartharoid.me/discord
|
|
*
|
|
* ###############################################################################################
|
|
*/
|
|
|
|
|
|
module.exports = {
|
|
defaults: {
|
|
colour: '#009999',
|
|
log_messages: true,
|
|
name_format: 'ticket-{number}',
|
|
opening_message: 'Hello {name}, thank you for creating a ticket. A member of staff will soon be available to assist you.\n\n__All messages in this channel are stored for future reference.__'
|
|
},
|
|
developer: { debug: false },
|
|
locale: 'en-GB',
|
|
logs: {
|
|
enabled: true,
|
|
keep_for: 30,
|
|
split: true
|
|
},
|
|
max_listeners: 10,
|
|
plugins: [],
|
|
presence: {
|
|
duration: 60,
|
|
presences: [
|
|
{
|
|
activity: '/new',
|
|
type: 'PLAYING'
|
|
},
|
|
{
|
|
activity: 'with tickets',
|
|
type: 'PLAYING'
|
|
},
|
|
{
|
|
activity: 'tickets',
|
|
type: 'WATCHING'
|
|
}
|
|
],
|
|
randomise: true
|
|
},
|
|
super_secret_setting: true,
|
|
update_notice: true
|
|
}; |