register (fullName, factory, options) public
Defined in packages/ember-runtime/lib/mixins/registry_proxy.js:29
Registers a factory that can be used for dependency injection (with inject) or for service lookup. Each factory is registered with a full name including two parts: type:name. A simple example: let App = Ember.Application.create();
App.Orange = Ember.Object.extend();
App.register('fruit:favorite', App.Orange);
Ember will resolve factories from the App namespace automatically. For