vault/ui/lib/replication/addon/routes/mode/secondaries/config-edit.js
Matthew Irish 6d273dc368
UI ember engines (#6718)
Adds replication engine and core in-repo addon
2019-05-13 14:05:25 -05:00

28 lines
742 B
JavaScript

import { hash } from 'rsvp';
import Base from '../../replication-base';
export default Base.extend({
modelPath: 'model.config',
model(params) {
return hash({
cluster: this.modelFor('mode.secondaries'),
config: this.store.findRecord('mount-filter-config', params.secondary_id),
mounts: this.fetchMounts(),
});
},
redirect(model) {
const cluster = model.cluster;
let replicationMode = this.paramsFor('mode').replication_mode;
if (
!this.get('version.hasPerfReplication') ||
replicationMode !== 'performance' ||
!cluster.get(`${replicationMode}.isPrimary`) ||
!cluster.get('canAddSecondary')
) {
return this.transitionTo('mode', replicationMode);
}
},
});