Hard fork of Zeppelin discord bot
Find a file
2018-12-14 06:32:17 +02:00
migrations Add MessageSaver plugin. Fix some buggy queries. 2018-11-24 14:01:06 +02:00
src Verify required Node.js version 2018-12-14 06:27:41 +02:00
.editorconfig Initial commit in new repository 2018-07-01 03:35:51 +03:00
.gitignore Ignore a temp file 2018-07-31 18:08:10 +03:00
.prettierrc prettier: increase max line width to 120 2018-08-18 13:24:13 +03:00
nodemon.json Add npm script for watching changes. Clear obsolete dependencies. 2018-07-07 14:27:54 +03:00
ormconfig.js Switch from Knex to TypeORM. Update Knub. 2018-10-26 06:41:20 +03:00
package-lock.json Update Typescript package to 3.2.2 2018-12-14 06:30:26 +02:00
package.json Update package name in package.json and set it to private 2018-12-14 06:32:17 +02:00
README.md Various small fixes 2018-07-01 04:31:24 +03:00
tsconfig.json Switch from Knex to TypeORM. Update Knub. 2018-10-26 06:41:20 +03:00
tslint.json Initial commit in new repository 2018-07-01 03:35:51 +03:00

Config format example

Config files are currently located at config/<guildId>.yml (and config/global.yml for global plugins).

levels:
  50: "1234" # Mod role id
  100: "5678" # Admin role id

plugins:
  mod_plugin:
    config:
      kick_message: 'You have been kicked'
    permissions:
      kick: false
    overrides:
      - level: '>=50'
        permissions:
          kick: true
      - level: '>=100'
        config:
          kick_message: 'You have been kicked by an admin'
  spam:
    config:
      filter_words: ['heck']
    overrides:
      - channel: '1234'
        config:
          +filter_words: ['foo']
      - level: '>=50'
        config:
          -filter_words: ['heck']