You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/ui-v2/app/services/env.js

14 lines
290 B

import Service from '@ember/service';
import { env } from 'consul-ui/env';
export default Service.extend({
// deprecated
// TODO: Remove this elsewhere in the app and use var instead
env: function(key) {
return env(key);
},
var: function(key) {
return env(key);
},
});