0f17378b26
Refs #4001 - grunt-jscs@0.8.1 which provides ES6 support.
11 lines
244 B
JavaScript
11 lines
244 B
JavaScript
var StoreInjector = {
|
|
name: 'store-injector',
|
|
after: 'store',
|
|
|
|
initialize: function (container, application) {
|
|
application.inject('component:gh-role-selector', 'store', 'store:main');
|
|
}
|
|
};
|
|
|
|
export default StoreInjector;
|