mirror of
https://github.com/flarum/framework.git
synced 2024-12-12 06:03:39 +08:00
8 lines
240 B
JavaScript
8 lines
240 B
JavaScript
|
export default {
|
||
|
name: 'inject-components',
|
||
|
initialize: function(container, application) {
|
||
|
application.inject('component', 'alerts', 'controller:alerts')
|
||
|
application.inject('component', 'composer', 'controller:composer')
|
||
|
}
|
||
|
};
|