├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── LICENSE ├── README.md ├── bot ├── README.md ├── config.js ├── index.js ├── package.json └── src │ ├── commands │ ├── development │ │ ├── botinfo.js │ │ ├── eval.js │ │ ├── ping.js │ │ └── test.js │ ├── guild │ │ ├── color.js │ │ └── prefix.js │ ├── help │ │ └── help.js │ ├── moderation │ │ ├── ban.js │ │ ├── kick.js │ │ ├── purge.js │ │ ├── softban.js │ │ └── unban.js │ ├── user │ │ └── myprefix.js │ └── utility │ │ ├── guildinfo.js │ │ ├── spawn.js │ │ ├── tag.js │ │ └── userinfo.js │ ├── handlers │ └── command.js │ ├── index.js │ ├── main.js │ ├── mongo │ ├── connect.js │ └── models │ │ ├── guild.js │ │ └── user.js │ └── utils │ ├── info.js │ ├── misc.js │ ├── require.js │ └── resolve.js ├── config.json ├── images ├── README.md ├── Screenshot from 2021-07-23 16-37-54.png ├── Screenshot from 2021-07-23 16-37-55.png ├── Screenshot from 2021-07-23 16-38-01.png ├── Screenshot from 2021-07-23 16-38-08.png ├── Screenshot from 2021-07-23 17-30-16.png ├── Screenshot from 2021-07-23 17-31-12.png ├── Screenshot from 2021-07-23 17-31-27.png ├── Screenshot from 2021-07-23 17-31-44.png ├── Screenshot from 2021-07-23 17-47-48.png ├── Screenshot from 2021-07-23 17-47-52.png └── Screenshot from 2021-07-23 17-50-54.png ├── index.js ├── package.json └── src ├── backend └── mongo │ ├── connect.js │ └── models │ ├── guild │ └── guild.js │ └── user │ └── user.js ├── routes ├── auth │ ├── auth.js │ └── logout.js ├── guilds │ ├── dashboard.js │ └── guild.js ├── home │ └── home.js ├── user │ └── user.js └── utility.js ├── server.js ├── strategies └── discord-strategy.js ├── utils └── misc.js └── views └── src ├── constructor.ejs ├── constructor_edit.ejs ├── dashboard.ejs ├── edit.ejs ├── guild.ejs ├── index.ejs ├── moderation.ejs ├── modules ├── dashboard │ └── guild.ejs ├── default │ └── menu.ejs └── user │ └── user.ejs ├── settings.ejs ├── stats.ejs ├── user.ejs └── utility.ejs /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/README.md -------------------------------------------------------------------------------- /bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/README.md -------------------------------------------------------------------------------- /bot/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/config.js -------------------------------------------------------------------------------- /bot/index.js: -------------------------------------------------------------------------------- 1 | require("./src/index") -------------------------------------------------------------------------------- /bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/package.json -------------------------------------------------------------------------------- /bot/src/commands/development/botinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/development/botinfo.js -------------------------------------------------------------------------------- /bot/src/commands/development/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/development/eval.js -------------------------------------------------------------------------------- /bot/src/commands/development/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/development/ping.js -------------------------------------------------------------------------------- /bot/src/commands/development/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/development/test.js -------------------------------------------------------------------------------- /bot/src/commands/guild/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/guild/color.js -------------------------------------------------------------------------------- /bot/src/commands/guild/prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/guild/prefix.js -------------------------------------------------------------------------------- /bot/src/commands/help/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/help/help.js -------------------------------------------------------------------------------- /bot/src/commands/moderation/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/moderation/ban.js -------------------------------------------------------------------------------- /bot/src/commands/moderation/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/moderation/kick.js -------------------------------------------------------------------------------- /bot/src/commands/moderation/purge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/moderation/purge.js -------------------------------------------------------------------------------- /bot/src/commands/moderation/softban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/moderation/softban.js -------------------------------------------------------------------------------- /bot/src/commands/moderation/unban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/moderation/unban.js -------------------------------------------------------------------------------- /bot/src/commands/user/myprefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/user/myprefix.js -------------------------------------------------------------------------------- /bot/src/commands/utility/guildinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/utility/guildinfo.js -------------------------------------------------------------------------------- /bot/src/commands/utility/spawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/utility/spawn.js -------------------------------------------------------------------------------- /bot/src/commands/utility/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/utility/tag.js -------------------------------------------------------------------------------- /bot/src/commands/utility/userinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/commands/utility/userinfo.js -------------------------------------------------------------------------------- /bot/src/handlers/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/handlers/command.js -------------------------------------------------------------------------------- /bot/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/index.js -------------------------------------------------------------------------------- /bot/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/main.js -------------------------------------------------------------------------------- /bot/src/mongo/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/mongo/connect.js -------------------------------------------------------------------------------- /bot/src/mongo/models/guild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/mongo/models/guild.js -------------------------------------------------------------------------------- /bot/src/mongo/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/mongo/models/user.js -------------------------------------------------------------------------------- /bot/src/utils/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/utils/info.js -------------------------------------------------------------------------------- /bot/src/utils/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/utils/misc.js -------------------------------------------------------------------------------- /bot/src/utils/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/utils/require.js -------------------------------------------------------------------------------- /bot/src/utils/resolve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/bot/src/utils/resolve.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/config.json -------------------------------------------------------------------------------- /images/README.md: -------------------------------------------------------------------------------- 1 | Images of the dashboard used on my personal bot 2 | -------------------------------------------------------------------------------- /images/Screenshot from 2021-07-23 16-37-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/images/Screenshot from 2021-07-23 16-37-54.png -------------------------------------------------------------------------------- /images/Screenshot from 2021-07-23 16-37-55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/images/Screenshot from 2021-07-23 16-37-55.png -------------------------------------------------------------------------------- /images/Screenshot from 2021-07-23 16-38-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/images/Screenshot from 2021-07-23 16-38-01.png -------------------------------------------------------------------------------- /images/Screenshot from 2021-07-23 16-38-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/images/Screenshot from 2021-07-23 16-38-08.png -------------------------------------------------------------------------------- /images/Screenshot from 2021-07-23 17-30-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/images/Screenshot from 2021-07-23 17-30-16.png -------------------------------------------------------------------------------- /images/Screenshot from 2021-07-23 17-31-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/images/Screenshot from 2021-07-23 17-31-12.png -------------------------------------------------------------------------------- /images/Screenshot from 2021-07-23 17-31-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/images/Screenshot from 2021-07-23 17-31-27.png -------------------------------------------------------------------------------- /images/Screenshot from 2021-07-23 17-31-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/images/Screenshot from 2021-07-23 17-31-44.png -------------------------------------------------------------------------------- /images/Screenshot from 2021-07-23 17-47-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/images/Screenshot from 2021-07-23 17-47-48.png -------------------------------------------------------------------------------- /images/Screenshot from 2021-07-23 17-47-52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/images/Screenshot from 2021-07-23 17-47-52.png -------------------------------------------------------------------------------- /images/Screenshot from 2021-07-23 17-50-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/images/Screenshot from 2021-07-23 17-50-54.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | require("./src/server"); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/package.json -------------------------------------------------------------------------------- /src/backend/mongo/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/backend/mongo/connect.js -------------------------------------------------------------------------------- /src/backend/mongo/models/guild/guild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/backend/mongo/models/guild/guild.js -------------------------------------------------------------------------------- /src/backend/mongo/models/user/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/backend/mongo/models/user/user.js -------------------------------------------------------------------------------- /src/routes/auth/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/routes/auth/auth.js -------------------------------------------------------------------------------- /src/routes/auth/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/routes/auth/logout.js -------------------------------------------------------------------------------- /src/routes/guilds/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/routes/guilds/dashboard.js -------------------------------------------------------------------------------- /src/routes/guilds/guild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/routes/guilds/guild.js -------------------------------------------------------------------------------- /src/routes/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/routes/home/home.js -------------------------------------------------------------------------------- /src/routes/user/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/routes/user/user.js -------------------------------------------------------------------------------- /src/routes/utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/routes/utility.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/server.js -------------------------------------------------------------------------------- /src/strategies/discord-strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/strategies/discord-strategy.js -------------------------------------------------------------------------------- /src/utils/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/utils/misc.js -------------------------------------------------------------------------------- /src/views/src/constructor.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/views/src/constructor.ejs -------------------------------------------------------------------------------- /src/views/src/constructor_edit.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/views/src/constructor_edit.ejs -------------------------------------------------------------------------------- /src/views/src/dashboard.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/views/src/dashboard.ejs -------------------------------------------------------------------------------- /src/views/src/edit.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/views/src/edit.ejs -------------------------------------------------------------------------------- /src/views/src/guild.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/views/src/guild.ejs -------------------------------------------------------------------------------- /src/views/src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/views/src/index.ejs -------------------------------------------------------------------------------- /src/views/src/moderation.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/views/src/moderation.ejs -------------------------------------------------------------------------------- /src/views/src/modules/dashboard/guild.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/views/src/modules/dashboard/guild.ejs -------------------------------------------------------------------------------- /src/views/src/modules/default/menu.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/views/src/modules/default/menu.ejs -------------------------------------------------------------------------------- /src/views/src/modules/user/user.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/views/src/modules/user/user.ejs -------------------------------------------------------------------------------- /src/views/src/settings.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/views/src/settings.ejs -------------------------------------------------------------------------------- /src/views/src/stats.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/views/src/stats.ejs -------------------------------------------------------------------------------- /src/views/src/user.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/views/src/user.ejs -------------------------------------------------------------------------------- /src/views/src/utility.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanVydes/dashboard-discord-ejs/HEAD/src/views/src/utility.ejs --------------------------------------------------------------------------------