aboutsummaryrefslogtreecommitdiff
path: root/src/modules/help.js
blob: 076b371f22e5ce2dd72b046ad8b3bfe4bd1c094e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
const utils = require("../utils");
const config = require('../config');

module.exports = ({ bot, knex, config, commands }) => {
  commands.addInboxServerCommand('help', [], async (msg, args, thread) => {
    let embed = {
      title: "ModMail - Help",
      type: "rich",
      description: "[mm.bot/commands](https://gist.github.com/8cy/1ecb7106d096f77394122cfa4fae77ad)"
    };
    utils.postSystemMessageWithFallback(msg.channel, thread, { embed });
  });
};