EXPERIMENTAL: new dashboard UI

This is the first iteration of an effort towards making a very good dashboard.

Until we feel confident this is good, this dashboard will only be accessible through /admin/dashboard_next
This commit is contained in:
Joffrey JAFFEUX
2018-04-16 10:42:06 +02:00
committed by GitHub
parent 223379e21a
commit 0e15a575f4
13 changed files with 454 additions and 3 deletions

View File

@@ -0,0 +1 @@
export default Discourse.Route.extend({});

View File

@@ -1,6 +1,7 @@
export default function() {
this.route('admin', { resetNamespace: true }, function() {
this.route('dashboard', { path: '/' });
this.route('dashboard_next', { path: '/dashboard_next' });
this.route('adminSiteSettings', { path: '/site_settings', resetNamespace: true }, function() {
this.route('adminSiteSettingsCategory', { path: 'category/:category_id', resetNamespace: true} );
});