aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/core/showcase.js
diff options
context:
space:
mode:
authorneelkamath <neelkamath@protonmail.com>2018-05-12 10:43:12 +0200
committerneelkamath <neelkamath@protonmail.com>2018-05-12 10:43:12 +0200
commitacbad15f2bc4a6733407bc17e1a5b4190ed3b287 (patch)
treede0ae1446b5515a494ae03c517ed5b748935d6bd /server/src/commands/core/showcase.js
parentRemove help.js as we need human, not programmatic documentation for this (diff)
downloadhackchat-acbad15f2bc4a6733407bc17e1a5b4190ed3b287.tar.gz
hackchat-acbad15f2bc4a6733407bc17e1a5b4190ed3b287.zip
Remove unused object fields
Diffstat (limited to '')
-rw-r--r--server/src/commands/core/showcase.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/server/src/commands/core/showcase.js b/server/src/commands/core/showcase.js
index 35d811a..1f2cdd9 100644
--- a/server/src/commands/core/showcase.js
+++ b/server/src/commands/core/showcase.js
@@ -43,9 +43,7 @@ exports.init = (core) => {
exports.requiredData = ['echo'];
// optional parameters are marked, all others are required
-exports.info = {
+exports.info = {
name: 'showcase', // actual command name
- aliases: ['templateModule'], // optional, an array of other names this module can be executed by
- usage: 'showcase {echo}', // used for help output, can be ommited if no parameters are required
- description: 'Simple command module template & info' // used for help output
+ aliases: ['templateModule']
};