mirror of https://github.com/rancher/ui.git
21 lines
499 B
JavaScript
21 lines
499 B
JavaScript
import { computed } from '@ember/object';
|
|
import Resource from '@rancher/ember-api-store/models/resource';
|
|
|
|
var LaunchConfig = Resource.extend({
|
|
displayEnvironmentVars: computed('launchConfig.environment', function() {
|
|
var envs = [];
|
|
var environment = this.get('launchConfig.environment') || {};
|
|
|
|
Object.keys(environment).forEach((key) => {
|
|
envs.pushObject({
|
|
key,
|
|
value: environment[key]
|
|
})
|
|
});
|
|
|
|
return envs;
|
|
}),
|
|
});
|
|
|
|
export default LaunchConfig;
|