2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

Migrate a bunch of admin routes to ES6 modules

This commit is contained in:
Robin Ward 2015-08-06 12:14:59 -04:00
parent 0f62a7f781
commit 92b2d8c247
15 changed files with 44 additions and 72 deletions

View file

@ -0,0 +1,5 @@
export default Ember.Route.extend({
beforeModel() {
this.replaceWith('adminCustomize.colors');
}
});