├── .eslintrc.json ├── .gitignore ├── docs ├── STORING_COOKIES.md ├── THEMING.md ├── assets │ └── color example.png └── gettingStarted.md ├── index.d.ts ├── index.js ├── package.json ├── readme.md ├── routes ├── auth.js ├── commands.js ├── custom.js ├── index.js ├── manage.js └── selector.js ├── test ├── favicon.ico ├── registerCommands.js └── test.js └── themes ├── dark ├── 404.ejs ├── commands.ejs ├── guild.ejs ├── index.ejs ├── index.js ├── partials │ ├── footer.ejs │ └── header.ejs └── selector.ejs └── light ├── 404.ejs ├── commands.ejs ├── guild.ejs ├── index.ejs ├── index.js ├── partials ├── footer.ejs └── header.ejs └── selector.ejs /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .env -------------------------------------------------------------------------------- /docs/STORING_COOKIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/docs/STORING_COOKIES.md -------------------------------------------------------------------------------- /docs/THEMING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/docs/THEMING.md -------------------------------------------------------------------------------- /docs/assets/color example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/docs/assets/color example.png -------------------------------------------------------------------------------- /docs/gettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/docs/gettingStarted.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/readme.md -------------------------------------------------------------------------------- /routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/routes/auth.js -------------------------------------------------------------------------------- /routes/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/routes/commands.js -------------------------------------------------------------------------------- /routes/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/routes/custom.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/routes/index.js -------------------------------------------------------------------------------- /routes/manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/routes/manage.js -------------------------------------------------------------------------------- /routes/selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/routes/selector.js -------------------------------------------------------------------------------- /test/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/test/favicon.ico -------------------------------------------------------------------------------- /test/registerCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/test/registerCommands.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/test/test.js -------------------------------------------------------------------------------- /themes/dark/404.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/themes/dark/404.ejs -------------------------------------------------------------------------------- /themes/dark/commands.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/themes/dark/commands.ejs -------------------------------------------------------------------------------- /themes/dark/guild.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/themes/dark/guild.ejs -------------------------------------------------------------------------------- /themes/dark/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/themes/dark/index.ejs -------------------------------------------------------------------------------- /themes/dark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/themes/dark/index.js -------------------------------------------------------------------------------- /themes/dark/partials/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/themes/dark/partials/footer.ejs -------------------------------------------------------------------------------- /themes/dark/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/themes/dark/partials/header.ejs -------------------------------------------------------------------------------- /themes/dark/selector.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/themes/dark/selector.ejs -------------------------------------------------------------------------------- /themes/light/404.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/themes/light/404.ejs -------------------------------------------------------------------------------- /themes/light/commands.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/themes/light/commands.ejs -------------------------------------------------------------------------------- /themes/light/guild.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/themes/light/guild.ejs -------------------------------------------------------------------------------- /themes/light/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/themes/light/index.ejs -------------------------------------------------------------------------------- /themes/light/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/themes/light/index.js -------------------------------------------------------------------------------- /themes/light/partials/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/themes/light/partials/footer.ejs -------------------------------------------------------------------------------- /themes/light/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/themes/light/partials/header.ejs -------------------------------------------------------------------------------- /themes/light/selector.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonLeclere/discord-easy-dashboard/HEAD/themes/light/selector.ejs --------------------------------------------------------------------------------