├── .env ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── dependabot.yml ├── .replit ├── FUNDING.yml ├── LICENSE ├── README.md ├── commands ├── block.js ├── close.js ├── config.js ├── create.js ├── help.js ├── ping.js ├── reply.js ├── tag.js └── thread.js ├── defaultConfig.json ├── events ├── guildCreate.js ├── interactionCreate.js ├── messageCreate.js └── ready.js ├── functions ├── DB.js ├── commandHandler.js ├── create.js ├── dbSync.js ├── deployCommands.js ├── getEmbed.js ├── reset.js ├── set.js └── updateActivity.js ├── index.js ├── locale ├── en_US.js └── template.txt ├── package.json ├── replit.nix ├── sequelize-package.json ├── server.js └── watch.json /.env: -------------------------------------------------------------------------------- 1 | TOKEN= 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- 1 | run = "npm start" -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/README.md -------------------------------------------------------------------------------- /commands/block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/commands/block.js -------------------------------------------------------------------------------- /commands/close.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/commands/close.js -------------------------------------------------------------------------------- /commands/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/commands/config.js -------------------------------------------------------------------------------- /commands/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/commands/create.js -------------------------------------------------------------------------------- /commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/commands/help.js -------------------------------------------------------------------------------- /commands/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/commands/ping.js -------------------------------------------------------------------------------- /commands/reply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/commands/reply.js -------------------------------------------------------------------------------- /commands/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/commands/tag.js -------------------------------------------------------------------------------- /commands/thread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/commands/thread.js -------------------------------------------------------------------------------- /defaultConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/defaultConfig.json -------------------------------------------------------------------------------- /events/guildCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/events/guildCreate.js -------------------------------------------------------------------------------- /events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/events/interactionCreate.js -------------------------------------------------------------------------------- /events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/events/messageCreate.js -------------------------------------------------------------------------------- /events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/events/ready.js -------------------------------------------------------------------------------- /functions/DB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/functions/DB.js -------------------------------------------------------------------------------- /functions/commandHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/functions/commandHandler.js -------------------------------------------------------------------------------- /functions/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/functions/create.js -------------------------------------------------------------------------------- /functions/dbSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/functions/dbSync.js -------------------------------------------------------------------------------- /functions/deployCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/functions/deployCommands.js -------------------------------------------------------------------------------- /functions/getEmbed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/functions/getEmbed.js -------------------------------------------------------------------------------- /functions/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/functions/reset.js -------------------------------------------------------------------------------- /functions/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/functions/set.js -------------------------------------------------------------------------------- /functions/updateActivity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/functions/updateActivity.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/index.js -------------------------------------------------------------------------------- /locale/en_US.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/locale/en_US.js -------------------------------------------------------------------------------- /locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/locale/template.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/package.json -------------------------------------------------------------------------------- /replit.nix: -------------------------------------------------------------------------------- 1 | { pkgs }: { 2 | deps = [ 3 | pkgs.nodejs-16_x 4 | ]; 5 | } -------------------------------------------------------------------------------- /sequelize-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/sequelize-package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/server.js -------------------------------------------------------------------------------- /watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkimotoRyou/ModMail/HEAD/watch.json --------------------------------------------------------------------------------