├── .browserslistrc ├── .editorconfig ├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── angular.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package.json ├── server.ts ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── app.server.module.ts │ ├── core │ │ └── navbar │ │ │ ├── navbar.component.css │ │ │ ├── navbar.component.html │ │ │ ├── navbar.component.spec.ts │ │ │ └── navbar.component.ts │ ├── dashboard │ │ ├── dashboard │ │ │ ├── customize-xp-card │ │ │ │ ├── customize-xp-card.component.css │ │ │ │ ├── customize-xp-card.component.html │ │ │ │ ├── customize-xp-card.component.spec.ts │ │ │ │ └── customize-xp-card.component.ts │ │ │ ├── dashboard-overview │ │ │ │ ├── dashboard-overview.component.css │ │ │ │ ├── dashboard-overview.component.html │ │ │ │ ├── dashboard-overview.component.spec.ts │ │ │ │ └── dashboard-overview.component.ts │ │ │ ├── dashboard-sidebar │ │ │ │ ├── dashboard-sidebar.component.css │ │ │ │ ├── dashboard-sidebar.component.html │ │ │ │ ├── dashboard-sidebar.component.spec.ts │ │ │ │ └── dashboard-sidebar.component.ts │ │ │ ├── reaction-roles-module │ │ │ │ ├── reaction-roles-module.component.css │ │ │ │ ├── reaction-roles-module.component.html │ │ │ │ ├── reaction-roles-module.component.spec.ts │ │ │ │ └── reaction-roles-module.component.ts │ │ │ └── settings-module │ │ │ │ ├── settings-module.component.css │ │ │ │ ├── settings-module.component.html │ │ │ │ ├── settings-module.component.spec.ts │ │ │ │ └── settings-module.component.ts │ │ ├── guild │ │ │ ├── auto-mod-module │ │ │ │ ├── auto-mod-module.component.css │ │ │ │ ├── auto-mod-module.component.html │ │ │ │ ├── auto-mod-module.component.spec.ts │ │ │ │ └── auto-mod-module.component.ts │ │ │ ├── commands-module │ │ │ │ ├── commands-module.component.css │ │ │ │ ├── commands-module.component.html │ │ │ │ ├── commands-module.component.spec.ts │ │ │ │ └── commands-module.component.ts │ │ │ ├── general-module │ │ │ │ ├── general-module.component.css │ │ │ │ ├── general-module.component.html │ │ │ │ ├── general-module.component.spec.ts │ │ │ │ └── general-module.component.ts │ │ │ ├── guild-sidebar │ │ │ │ ├── guild-sidebar.component.css │ │ │ │ ├── guild-sidebar.component.html │ │ │ │ ├── guild-sidebar.component.spec.ts │ │ │ │ └── guild-sidebar.component.ts │ │ │ ├── guild │ │ │ │ ├── guild.component.css │ │ │ │ ├── guild.component.html │ │ │ │ ├── guild.component.spec.ts │ │ │ │ └── guild.component.ts │ │ │ ├── leaderboard-module │ │ │ │ ├── leaderboard-module.component.css │ │ │ │ ├── leaderboard-module.component.html │ │ │ │ ├── leaderboard-module.component.spec.ts │ │ │ │ └── leaderboard-module.component.ts │ │ │ ├── leveling-module │ │ │ │ ├── leveling-module.animations.ts │ │ │ │ ├── leveling-module.component.css │ │ │ │ ├── leveling-module.component.html │ │ │ │ ├── leveling-module.component.spec.ts │ │ │ │ └── leveling-module.component.ts │ │ │ ├── log-module │ │ │ │ ├── log-module.component.css │ │ │ │ ├── log-module.component.html │ │ │ │ ├── log-module.component.spec.ts │ │ │ │ └── log-module.component.ts │ │ │ ├── logs-module │ │ │ │ ├── logs-module.component.css │ │ │ │ ├── logs-module.component.html │ │ │ │ ├── logs-module.component.spec.ts │ │ │ │ └── logs-module.component.ts │ │ │ └── music-module │ │ │ │ ├── music-module.component.css │ │ │ │ ├── music-module.component.html │ │ │ │ ├── music-module.component.spec.ts │ │ │ │ └── music-module.component.ts │ │ ├── sidebar │ │ │ ├── sidebar.component.css │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.spec.ts │ │ │ └── sidebar.component.ts │ │ └── widgets │ │ │ ├── audit-log-widget │ │ │ ├── audit-log-widget.component.css │ │ │ ├── audit-log-widget.component.html │ │ │ ├── audit-log-widget.component.spec.ts │ │ │ └── audit-log-widget.component.ts │ │ │ └── commands-widget │ │ │ ├── commands-widget.component.css │ │ │ ├── commands-widget.component.html │ │ │ ├── commands-widget.component.spec.ts │ │ │ └── commands-widget.component.ts │ ├── guards │ │ ├── can-deactivate-dashboard.guard.spec.ts │ │ ├── can-deactivate-dashboard.guard.ts │ │ ├── dashboard-auth.guard.spec.ts │ │ ├── dashboard-auth.guard.ts │ │ ├── guild-auth.guard.spec.ts │ │ ├── guild-auth.guard.ts │ │ ├── leaderboard-auth.guard.spec.ts │ │ └── leaderboard-auth.guard.ts │ ├── material-module.ts │ ├── module-config.ts │ ├── pages │ │ ├── auth │ │ │ ├── auth │ │ │ │ ├── auth.component.css │ │ │ │ ├── auth.component.html │ │ │ │ ├── auth.component.spec.ts │ │ │ │ └── auth.component.ts │ │ │ ├── invite │ │ │ │ ├── invite.component.css │ │ │ │ ├── invite.component.html │ │ │ │ └── invite.component.ts │ │ │ ├── login │ │ │ │ ├── login.component.css │ │ │ │ ├── login.component.html │ │ │ │ └── login.component.ts │ │ │ └── logout │ │ │ │ ├── logout.component.css │ │ │ │ ├── logout.component.html │ │ │ │ ├── logout.component.spec.ts │ │ │ │ └── logout.component.ts │ │ ├── commands │ │ │ ├── commands.component.css │ │ │ ├── commands.component.html │ │ │ ├── commands.component.spec.ts │ │ │ └── commands.component.ts │ │ ├── docs │ │ │ ├── docs.component.css │ │ │ ├── docs.component.html │ │ │ ├── docs.component.spec.ts │ │ │ └── docs.component.ts │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── not-found │ │ │ ├── not-found.component.css │ │ │ ├── not-found.component.html │ │ │ ├── not-found.component.spec.ts │ │ │ └── not-found.component.ts │ │ ├── payment-success │ │ │ ├── payment-success.component.css │ │ │ ├── payment-success.component.html │ │ │ ├── payment-success.component.spec.ts │ │ │ └── payment-success.component.ts │ │ └── plus │ │ │ ├── plus-card │ │ │ ├── plus-card.component.css │ │ │ ├── plus-card.component.html │ │ │ ├── plus-card.component.spec.ts │ │ │ └── plus-card.component.ts │ │ │ └── plus │ │ │ ├── plus.component.css │ │ │ ├── plus.component.html │ │ │ ├── plus.component.spec.ts │ │ │ └── plus.component.ts │ ├── pipes │ │ ├── camel-to-sentence-case.pipe.ts │ │ ├── clean-date-time.pipe.spec.ts │ │ ├── clean-date-time.pipe.ts │ │ ├── duration-string.pipe.spec.ts │ │ ├── duration-string.pipe.ts │ │ ├── mini-date.pipe.spec.ts │ │ ├── mini-date.pipe.ts │ │ ├── snake-to-sentence-case.pipe.ts │ │ ├── truncated.pipe.spec.ts │ │ └── truncated.pipe.ts │ ├── premium.directive.spec.ts │ ├── services │ │ ├── api.service.spec.ts │ │ ├── api.service.ts │ │ ├── commands.service.spec.ts │ │ ├── commands.service.ts │ │ ├── guild.service.spec.ts │ │ ├── guild.service.ts │ │ ├── music.service.spec.ts │ │ ├── music.service.ts │ │ ├── pay.service.spec.ts │ │ ├── pay.service.ts │ │ ├── theme.service.spec.ts │ │ ├── theme.service.ts │ │ ├── user.service.spec.ts │ │ └── user.service.ts │ ├── stats │ │ ├── popular-commands-graph │ │ │ ├── popular-commands-graph.component.css │ │ │ ├── popular-commands-graph.component.html │ │ │ ├── popular-commands-graph.component.spec.ts │ │ │ └── popular-commands-graph.component.ts │ │ ├── popular-inputs-graph │ │ │ ├── popular-inputs-graph.component.css │ │ │ ├── popular-inputs-graph.component.html │ │ │ ├── popular-inputs-graph.component.spec.ts │ │ │ └── popular-inputs-graph.component.ts │ │ ├── stats.component.css │ │ ├── stats.component.html │ │ ├── stats.component.spec.ts │ │ └── stats.component.ts │ ├── utils.ts │ ├── utils │ │ ├── discord │ │ │ ├── member-username │ │ │ │ ├── member-username.component.css │ │ │ │ ├── member-username.component.html │ │ │ │ ├── member-username.component.spec.ts │ │ │ │ └── member-username.component.ts │ │ │ ├── message-preview │ │ │ │ ├── event-variables.ts │ │ │ │ ├── message-preview.component.css │ │ │ │ ├── message-preview.component.html │ │ │ │ ├── message-preview.component.spec.ts │ │ │ │ └── message-preview.component.ts │ │ │ └── save-changes │ │ │ │ ├── save-changes.component.css │ │ │ │ ├── save-changes.component.html │ │ │ │ ├── save-changes.component.spec.ts │ │ │ │ └── save-changes.component.ts │ │ ├── plus-badge │ │ │ ├── plus-badge.component.css │ │ │ ├── plus-badge.component.html │ │ │ ├── plus-badge.component.spec.ts │ │ │ └── plus-badge.component.ts │ │ ├── plus-paywall │ │ │ ├── plus-paywall.component.css │ │ │ ├── plus-paywall.component.html │ │ │ ├── plus-paywall.component.spec.ts │ │ │ └── plus-paywall.component.ts │ │ ├── spinner │ │ │ ├── spinner.component.css │ │ │ ├── spinner.component.html │ │ │ ├── spinner.component.spec.ts │ │ │ └── spinner.component.ts │ │ └── waves │ │ │ ├── waves.component.css │ │ │ ├── waves.component.html │ │ │ ├── waves.component.spec.ts │ │ │ └── waves.component.ts │ ├── xp-card │ │ ├── xp-card.component.css │ │ ├── xp-card.component.html │ │ ├── xp-card.component.spec.ts │ │ └── xp-card.component.ts │ └── zippy │ │ ├── zippy.component.animations.ts │ │ ├── zippy.component.css │ │ ├── zippy.component.html │ │ ├── zippy.component.spec.ts │ │ └── zippy.component.ts ├── assets │ ├── .gitkeep │ ├── css │ │ ├── animations.css │ │ ├── main.css │ │ ├── nav-icon.css │ │ ├── spinner.css │ │ ├── utils.css │ │ └── vs2015.css │ └── img │ │ ├── 2pg-avatar-transparent.png │ │ ├── 2pg-avatar-transparent.svg │ │ ├── 2pg-plus-avatar-transparent.png │ │ ├── 2pg-plus-avatar-transparent.svg │ │ ├── 404.svg │ │ ├── cool-unused-asset.jpg │ │ ├── earth.svg │ │ ├── mars.svg │ │ ├── moon.svg │ │ ├── overlay-stars.svg │ │ └── rocket.svg ├── directives │ └── premium.directive.ts ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.server.ts ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts └── theme.scss ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.server.json └── tsconfig.spec.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/package.json -------------------------------------------------------------------------------- /server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/server.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.server.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/app.server.module.ts -------------------------------------------------------------------------------- /src/app/core/navbar/navbar.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/core/navbar/navbar.component.css -------------------------------------------------------------------------------- /src/app/core/navbar/navbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/core/navbar/navbar.component.html -------------------------------------------------------------------------------- /src/app/core/navbar/navbar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/core/navbar/navbar.component.spec.ts -------------------------------------------------------------------------------- /src/app/core/navbar/navbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/core/navbar/navbar.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/customize-xp-card/customize-xp-card.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/customize-xp-card/customize-xp-card.component.css -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/customize-xp-card/customize-xp-card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/customize-xp-card/customize-xp-card.component.html -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/customize-xp-card/customize-xp-card.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/customize-xp-card/customize-xp-card.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/customize-xp-card/customize-xp-card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/customize-xp-card/customize-xp-card.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/dashboard-overview/dashboard-overview.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/dashboard-overview/dashboard-overview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/dashboard-overview/dashboard-overview.component.html -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/dashboard-overview/dashboard-overview.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/dashboard-overview/dashboard-overview.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/dashboard-overview/dashboard-overview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/dashboard-overview/dashboard-overview.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/dashboard-sidebar/dashboard-sidebar.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/dashboard-sidebar/dashboard-sidebar.component.css -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/dashboard-sidebar/dashboard-sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/dashboard-sidebar/dashboard-sidebar.component.html -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/dashboard-sidebar/dashboard-sidebar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/dashboard-sidebar/dashboard-sidebar.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/dashboard-sidebar/dashboard-sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/dashboard-sidebar/dashboard-sidebar.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/reaction-roles-module/reaction-roles-module.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/reaction-roles-module/reaction-roles-module.component.css -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/reaction-roles-module/reaction-roles-module.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/reaction-roles-module/reaction-roles-module.component.html -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/reaction-roles-module/reaction-roles-module.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/reaction-roles-module/reaction-roles-module.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/reaction-roles-module/reaction-roles-module.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/reaction-roles-module/reaction-roles-module.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/settings-module/settings-module.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/settings-module/settings-module.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/settings-module/settings-module.component.html -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/settings-module/settings-module.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/settings-module/settings-module.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard/settings-module/settings-module.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/dashboard/settings-module/settings-module.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/auto-mod-module/auto-mod-module.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/auto-mod-module/auto-mod-module.component.css -------------------------------------------------------------------------------- /src/app/dashboard/guild/auto-mod-module/auto-mod-module.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/auto-mod-module/auto-mod-module.component.html -------------------------------------------------------------------------------- /src/app/dashboard/guild/auto-mod-module/auto-mod-module.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/auto-mod-module/auto-mod-module.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/auto-mod-module/auto-mod-module.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/auto-mod-module/auto-mod-module.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/commands-module/commands-module.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/commands-module/commands-module.component.css -------------------------------------------------------------------------------- /src/app/dashboard/guild/commands-module/commands-module.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/commands-module/commands-module.component.html -------------------------------------------------------------------------------- /src/app/dashboard/guild/commands-module/commands-module.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/commands-module/commands-module.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/commands-module/commands-module.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/commands-module/commands-module.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/general-module/general-module.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/dashboard/guild/general-module/general-module.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/general-module/general-module.component.html -------------------------------------------------------------------------------- /src/app/dashboard/guild/general-module/general-module.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/general-module/general-module.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/general-module/general-module.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/general-module/general-module.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/guild-sidebar/guild-sidebar.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/guild-sidebar/guild-sidebar.component.css -------------------------------------------------------------------------------- /src/app/dashboard/guild/guild-sidebar/guild-sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/guild-sidebar/guild-sidebar.component.html -------------------------------------------------------------------------------- /src/app/dashboard/guild/guild-sidebar/guild-sidebar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/guild-sidebar/guild-sidebar.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/guild-sidebar/guild-sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/guild-sidebar/guild-sidebar.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/guild/guild.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/guild/guild.component.css -------------------------------------------------------------------------------- /src/app/dashboard/guild/guild/guild.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/guild/guild.component.html -------------------------------------------------------------------------------- /src/app/dashboard/guild/guild/guild.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/guild/guild.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/guild/guild.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/guild/guild.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/leaderboard-module/leaderboard-module.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/leaderboard-module/leaderboard-module.component.css -------------------------------------------------------------------------------- /src/app/dashboard/guild/leaderboard-module/leaderboard-module.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/leaderboard-module/leaderboard-module.component.html -------------------------------------------------------------------------------- /src/app/dashboard/guild/leaderboard-module/leaderboard-module.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/leaderboard-module/leaderboard-module.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/leaderboard-module/leaderboard-module.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/leaderboard-module/leaderboard-module.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/leveling-module/leveling-module.animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/leveling-module/leveling-module.animations.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/leveling-module/leveling-module.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/leveling-module/leveling-module.component.css -------------------------------------------------------------------------------- /src/app/dashboard/guild/leveling-module/leveling-module.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/leveling-module/leveling-module.component.html -------------------------------------------------------------------------------- /src/app/dashboard/guild/leveling-module/leveling-module.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/leveling-module/leveling-module.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/leveling-module/leveling-module.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/leveling-module/leveling-module.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/log-module/log-module.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/log-module/log-module.component.css -------------------------------------------------------------------------------- /src/app/dashboard/guild/log-module/log-module.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/log-module/log-module.component.html -------------------------------------------------------------------------------- /src/app/dashboard/guild/log-module/log-module.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/log-module/log-module.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/log-module/log-module.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/log-module/log-module.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/logs-module/logs-module.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/logs-module/logs-module.component.css -------------------------------------------------------------------------------- /src/app/dashboard/guild/logs-module/logs-module.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/logs-module/logs-module.component.html -------------------------------------------------------------------------------- /src/app/dashboard/guild/logs-module/logs-module.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/logs-module/logs-module.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/logs-module/logs-module.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/logs-module/logs-module.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/music-module/music-module.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/music-module/music-module.component.css -------------------------------------------------------------------------------- /src/app/dashboard/guild/music-module/music-module.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/music-module/music-module.component.html -------------------------------------------------------------------------------- /src/app/dashboard/guild/music-module/music-module.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/music-module/music-module.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/guild/music-module/music-module.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/guild/music-module/music-module.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/sidebar/sidebar.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/sidebar/sidebar.component.css -------------------------------------------------------------------------------- /src/app/dashboard/sidebar/sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/sidebar/sidebar.component.html -------------------------------------------------------------------------------- /src/app/dashboard/sidebar/sidebar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/sidebar/sidebar.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/sidebar/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/sidebar/sidebar.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/widgets/audit-log-widget/audit-log-widget.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/widgets/audit-log-widget/audit-log-widget.component.css -------------------------------------------------------------------------------- /src/app/dashboard/widgets/audit-log-widget/audit-log-widget.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/widgets/audit-log-widget/audit-log-widget.component.html -------------------------------------------------------------------------------- /src/app/dashboard/widgets/audit-log-widget/audit-log-widget.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/widgets/audit-log-widget/audit-log-widget.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/widgets/audit-log-widget/audit-log-widget.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/widgets/audit-log-widget/audit-log-widget.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/widgets/commands-widget/commands-widget.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/widgets/commands-widget/commands-widget.component.css -------------------------------------------------------------------------------- /src/app/dashboard/widgets/commands-widget/commands-widget.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/widgets/commands-widget/commands-widget.component.html -------------------------------------------------------------------------------- /src/app/dashboard/widgets/commands-widget/commands-widget.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/widgets/commands-widget/commands-widget.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/widgets/commands-widget/commands-widget.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/dashboard/widgets/commands-widget/commands-widget.component.ts -------------------------------------------------------------------------------- /src/app/guards/can-deactivate-dashboard.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/guards/can-deactivate-dashboard.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guards/can-deactivate-dashboard.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/guards/can-deactivate-dashboard.guard.ts -------------------------------------------------------------------------------- /src/app/guards/dashboard-auth.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/guards/dashboard-auth.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guards/dashboard-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/guards/dashboard-auth.guard.ts -------------------------------------------------------------------------------- /src/app/guards/guild-auth.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/guards/guild-auth.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guards/guild-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/guards/guild-auth.guard.ts -------------------------------------------------------------------------------- /src/app/guards/leaderboard-auth.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/guards/leaderboard-auth.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guards/leaderboard-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/guards/leaderboard-auth.guard.ts -------------------------------------------------------------------------------- /src/app/material-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/material-module.ts -------------------------------------------------------------------------------- /src/app/module-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/module-config.ts -------------------------------------------------------------------------------- /src/app/pages/auth/auth/auth.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/auth/auth/auth.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/auth/auth/auth.component.html -------------------------------------------------------------------------------- /src/app/pages/auth/auth/auth.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/auth/auth/auth.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/auth/auth/auth.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/auth/auth/auth.component.ts -------------------------------------------------------------------------------- /src/app/pages/auth/invite/invite.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/auth/invite/invite.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/auth/invite/invite.component.html -------------------------------------------------------------------------------- /src/app/pages/auth/invite/invite.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/auth/invite/invite.component.ts -------------------------------------------------------------------------------- /src/app/pages/auth/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/auth/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/auth/login/login.component.html -------------------------------------------------------------------------------- /src/app/pages/auth/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/auth/login/login.component.ts -------------------------------------------------------------------------------- /src/app/pages/auth/logout/logout.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/auth/logout/logout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/auth/logout/logout.component.html -------------------------------------------------------------------------------- /src/app/pages/auth/logout/logout.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/auth/logout/logout.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/auth/logout/logout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/auth/logout/logout.component.ts -------------------------------------------------------------------------------- /src/app/pages/commands/commands.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/commands/commands.component.css -------------------------------------------------------------------------------- /src/app/pages/commands/commands.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/commands/commands.component.html -------------------------------------------------------------------------------- /src/app/pages/commands/commands.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/commands/commands.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/commands/commands.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/commands/commands.component.ts -------------------------------------------------------------------------------- /src/app/pages/docs/docs.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/docs/docs.component.html: -------------------------------------------------------------------------------- 1 |

docs works!

2 | -------------------------------------------------------------------------------- /src/app/pages/docs/docs.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/docs/docs.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/docs/docs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/docs/docs.component.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/home/home.component.css -------------------------------------------------------------------------------- /src/app/pages/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/home/home.component.html -------------------------------------------------------------------------------- /src/app/pages/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/home/home.component.ts -------------------------------------------------------------------------------- /src/app/pages/not-found/not-found.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/not-found/not-found.component.css -------------------------------------------------------------------------------- /src/app/pages/not-found/not-found.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/not-found/not-found.component.html -------------------------------------------------------------------------------- /src/app/pages/not-found/not-found.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/not-found/not-found.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/not-found/not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/not-found/not-found.component.ts -------------------------------------------------------------------------------- /src/app/pages/payment-success/payment-success.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/payment-success/payment-success.component.css -------------------------------------------------------------------------------- /src/app/pages/payment-success/payment-success.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/payment-success/payment-success.component.html -------------------------------------------------------------------------------- /src/app/pages/payment-success/payment-success.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/payment-success/payment-success.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/payment-success/payment-success.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/payment-success/payment-success.component.ts -------------------------------------------------------------------------------- /src/app/pages/plus/plus-card/plus-card.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/plus/plus-card/plus-card.component.css -------------------------------------------------------------------------------- /src/app/pages/plus/plus-card/plus-card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/plus/plus-card/plus-card.component.html -------------------------------------------------------------------------------- /src/app/pages/plus/plus-card/plus-card.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/plus/plus-card/plus-card.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/plus/plus-card/plus-card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/plus/plus-card/plus-card.component.ts -------------------------------------------------------------------------------- /src/app/pages/plus/plus/plus.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/plus/plus/plus.component.css -------------------------------------------------------------------------------- /src/app/pages/plus/plus/plus.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/plus/plus/plus.component.html -------------------------------------------------------------------------------- /src/app/pages/plus/plus/plus.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/plus/plus/plus.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/plus/plus/plus.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pages/plus/plus/plus.component.ts -------------------------------------------------------------------------------- /src/app/pipes/camel-to-sentence-case.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pipes/camel-to-sentence-case.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/clean-date-time.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pipes/clean-date-time.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/clean-date-time.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pipes/clean-date-time.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/duration-string.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pipes/duration-string.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/duration-string.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pipes/duration-string.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/mini-date.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pipes/mini-date.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/mini-date.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pipes/mini-date.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/snake-to-sentence-case.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pipes/snake-to-sentence-case.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/truncated.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pipes/truncated.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/truncated.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/pipes/truncated.pipe.ts -------------------------------------------------------------------------------- /src/app/premium.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/premium.directive.spec.ts -------------------------------------------------------------------------------- /src/app/services/api.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/services/api.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/services/api.service.ts -------------------------------------------------------------------------------- /src/app/services/commands.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/services/commands.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/commands.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/services/commands.service.ts -------------------------------------------------------------------------------- /src/app/services/guild.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/services/guild.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/guild.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/services/guild.service.ts -------------------------------------------------------------------------------- /src/app/services/music.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/services/music.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/music.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/services/music.service.ts -------------------------------------------------------------------------------- /src/app/services/pay.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/services/pay.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/pay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/services/pay.service.ts -------------------------------------------------------------------------------- /src/app/services/theme.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/services/theme.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/theme.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/services/theme.service.ts -------------------------------------------------------------------------------- /src/app/services/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/services/user.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/services/user.service.ts -------------------------------------------------------------------------------- /src/app/stats/popular-commands-graph/popular-commands-graph.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/stats/popular-commands-graph/popular-commands-graph.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/stats/popular-commands-graph/popular-commands-graph.component.html -------------------------------------------------------------------------------- /src/app/stats/popular-commands-graph/popular-commands-graph.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/stats/popular-commands-graph/popular-commands-graph.component.spec.ts -------------------------------------------------------------------------------- /src/app/stats/popular-commands-graph/popular-commands-graph.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/stats/popular-commands-graph/popular-commands-graph.component.ts -------------------------------------------------------------------------------- /src/app/stats/popular-inputs-graph/popular-inputs-graph.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/stats/popular-inputs-graph/popular-inputs-graph.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/stats/popular-inputs-graph/popular-inputs-graph.component.html -------------------------------------------------------------------------------- /src/app/stats/popular-inputs-graph/popular-inputs-graph.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/stats/popular-inputs-graph/popular-inputs-graph.component.spec.ts -------------------------------------------------------------------------------- /src/app/stats/popular-inputs-graph/popular-inputs-graph.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/stats/popular-inputs-graph/popular-inputs-graph.component.ts -------------------------------------------------------------------------------- /src/app/stats/stats.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/stats/stats.component.css -------------------------------------------------------------------------------- /src/app/stats/stats.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/stats/stats.component.html -------------------------------------------------------------------------------- /src/app/stats/stats.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/stats/stats.component.spec.ts -------------------------------------------------------------------------------- /src/app/stats/stats.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/stats/stats.component.ts -------------------------------------------------------------------------------- /src/app/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils.ts -------------------------------------------------------------------------------- /src/app/utils/discord/member-username/member-username.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/discord/member-username/member-username.component.css -------------------------------------------------------------------------------- /src/app/utils/discord/member-username/member-username.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/discord/member-username/member-username.component.html -------------------------------------------------------------------------------- /src/app/utils/discord/member-username/member-username.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/discord/member-username/member-username.component.spec.ts -------------------------------------------------------------------------------- /src/app/utils/discord/member-username/member-username.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/discord/member-username/member-username.component.ts -------------------------------------------------------------------------------- /src/app/utils/discord/message-preview/event-variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/discord/message-preview/event-variables.ts -------------------------------------------------------------------------------- /src/app/utils/discord/message-preview/message-preview.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/discord/message-preview/message-preview.component.css -------------------------------------------------------------------------------- /src/app/utils/discord/message-preview/message-preview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/discord/message-preview/message-preview.component.html -------------------------------------------------------------------------------- /src/app/utils/discord/message-preview/message-preview.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/discord/message-preview/message-preview.component.spec.ts -------------------------------------------------------------------------------- /src/app/utils/discord/message-preview/message-preview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/discord/message-preview/message-preview.component.ts -------------------------------------------------------------------------------- /src/app/utils/discord/save-changes/save-changes.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/discord/save-changes/save-changes.component.css -------------------------------------------------------------------------------- /src/app/utils/discord/save-changes/save-changes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/discord/save-changes/save-changes.component.html -------------------------------------------------------------------------------- /src/app/utils/discord/save-changes/save-changes.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/discord/save-changes/save-changes.component.spec.ts -------------------------------------------------------------------------------- /src/app/utils/discord/save-changes/save-changes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/discord/save-changes/save-changes.component.ts -------------------------------------------------------------------------------- /src/app/utils/plus-badge/plus-badge.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/utils/plus-badge/plus-badge.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/plus-badge/plus-badge.component.html -------------------------------------------------------------------------------- /src/app/utils/plus-badge/plus-badge.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/plus-badge/plus-badge.component.spec.ts -------------------------------------------------------------------------------- /src/app/utils/plus-badge/plus-badge.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/plus-badge/plus-badge.component.ts -------------------------------------------------------------------------------- /src/app/utils/plus-paywall/plus-paywall.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/plus-paywall/plus-paywall.component.css -------------------------------------------------------------------------------- /src/app/utils/plus-paywall/plus-paywall.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/plus-paywall/plus-paywall.component.html -------------------------------------------------------------------------------- /src/app/utils/plus-paywall/plus-paywall.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/plus-paywall/plus-paywall.component.spec.ts -------------------------------------------------------------------------------- /src/app/utils/plus-paywall/plus-paywall.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/plus-paywall/plus-paywall.component.ts -------------------------------------------------------------------------------- /src/app/utils/spinner/spinner.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/spinner/spinner.component.css -------------------------------------------------------------------------------- /src/app/utils/spinner/spinner.component.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /src/app/utils/spinner/spinner.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/spinner/spinner.component.spec.ts -------------------------------------------------------------------------------- /src/app/utils/spinner/spinner.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/spinner/spinner.component.ts -------------------------------------------------------------------------------- /src/app/utils/waves/waves.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/waves/waves.component.css -------------------------------------------------------------------------------- /src/app/utils/waves/waves.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/waves/waves.component.html -------------------------------------------------------------------------------- /src/app/utils/waves/waves.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/waves/waves.component.spec.ts -------------------------------------------------------------------------------- /src/app/utils/waves/waves.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/utils/waves/waves.component.ts -------------------------------------------------------------------------------- /src/app/xp-card/xp-card.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/xp-card/xp-card.component.css -------------------------------------------------------------------------------- /src/app/xp-card/xp-card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/xp-card/xp-card.component.html -------------------------------------------------------------------------------- /src/app/xp-card/xp-card.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/xp-card/xp-card.component.spec.ts -------------------------------------------------------------------------------- /src/app/xp-card/xp-card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/xp-card/xp-card.component.ts -------------------------------------------------------------------------------- /src/app/zippy/zippy.component.animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/zippy/zippy.component.animations.ts -------------------------------------------------------------------------------- /src/app/zippy/zippy.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/zippy/zippy.component.css -------------------------------------------------------------------------------- /src/app/zippy/zippy.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/zippy/zippy.component.html -------------------------------------------------------------------------------- /src/app/zippy/zippy.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/zippy/zippy.component.spec.ts -------------------------------------------------------------------------------- /src/app/zippy/zippy.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/app/zippy/zippy.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/css/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/css/animations.css -------------------------------------------------------------------------------- /src/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/css/main.css -------------------------------------------------------------------------------- /src/assets/css/nav-icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/css/nav-icon.css -------------------------------------------------------------------------------- /src/assets/css/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/css/spinner.css -------------------------------------------------------------------------------- /src/assets/css/utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/css/utils.css -------------------------------------------------------------------------------- /src/assets/css/vs2015.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/css/vs2015.css -------------------------------------------------------------------------------- /src/assets/img/2pg-avatar-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/img/2pg-avatar-transparent.png -------------------------------------------------------------------------------- /src/assets/img/2pg-avatar-transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/img/2pg-avatar-transparent.svg -------------------------------------------------------------------------------- /src/assets/img/2pg-plus-avatar-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/img/2pg-plus-avatar-transparent.png -------------------------------------------------------------------------------- /src/assets/img/2pg-plus-avatar-transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/img/2pg-plus-avatar-transparent.svg -------------------------------------------------------------------------------- /src/assets/img/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/img/404.svg -------------------------------------------------------------------------------- /src/assets/img/cool-unused-asset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/img/cool-unused-asset.jpg -------------------------------------------------------------------------------- /src/assets/img/earth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/img/earth.svg -------------------------------------------------------------------------------- /src/assets/img/mars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/img/mars.svg -------------------------------------------------------------------------------- /src/assets/img/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/img/moon.svg -------------------------------------------------------------------------------- /src/assets/img/overlay-stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/img/overlay-stars.svg -------------------------------------------------------------------------------- /src/assets/img/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/assets/img/rocket.svg -------------------------------------------------------------------------------- /src/directives/premium.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/directives/premium.directive.ts -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/main.server.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/src/theme.scss -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/tsconfig.server.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopg/Dashboard/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------