ui/app/models/virtualservice.js

28 lines
919 B
JavaScript

import Resource from '@rancher/ember-api-store/models/resource';
import { reference } from '@rancher/ember-api-store/utils/denormalize';
import { inject as service } from '@ember/service';
import { get, computed } from '@ember/object';
export default Resource.extend({
clusterStore: service(),
router: service(),
canHaveLabels: true,
namespace: reference('namespaceId', 'namespace', 'clusterStore'),
displayHostsString: computed('hosts.[]', function() {
return (get(this, 'hosts') || []).join(', ');
}),
actions: {
edit() {
get(this, 'router').transitionTo('authenticated.project.istio.project-istio.virtual-services.detail.edit', get(this, 'id'));
},
clone() {
get(this, 'router').transitionTo('authenticated.project.istio.project-istio.virtual-services.new', get(this, 'projectId'), { queryParams: { id: get(this, 'id') } });
},
},
});