open-nomad/ui/app/initializers/app-env.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
394 B
JavaScript
Raw Normal View History

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
2017-09-19 14:47:10 +00:00
export function initialize() {
const application = arguments[1] || arguments[0];
// Provides the app config to all templates
application.inject('controller', 'config', 'service:config');
application.inject('component', 'config', 'service:config');
}
export default {
name: 'app-config',
initialize,
};