ember-admin icon indicating copy to clipboard operation
ember-admin copied to clipboard

Use engines

Open knownasilya opened this issue 9 years ago • 2 comments

Since ember-engines is now a thing, it might be worthwhile to start implementing this as engines, with sub-engines (is that a thing?) for plugins.

App = Ember.Application.extend({
  modulePrefix: config.modulePrefix,
  podModulePrefix: config.podModulePrefix,
  Resolver,

  engines: {
    emberAdmin: {
      dependencies: {
        services: [
          'store',
          'session'
        ]
      },
      engines: {
        'admin-search': 'custom-ea-advanced-search'
      }
    }
  }
});

knownasilya avatar Jan 25 '16 16:01 knownasilya

:100: :+1: also lazy loading enabled for admin interface

kirantpatil avatar Jul 06 '16 12:07 kirantpatil

I think we'd have to wait for the engine story to implement lazy loading. I spiked some ideas a while back but I'd prefer to stick with the official way

bcardarella avatar Jul 06 '16 12:07 bcardarella