mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-30 18:17:55 +00:00
15 lines
396 B
JavaScript
15 lines
396 B
JavaScript
import Actions from 'core/components/replication-actions-single';
|
|
import layout from '../templates/components/replication-action-disable';
|
|
|
|
export default Actions.extend({
|
|
layout,
|
|
tagName: '',
|
|
|
|
actions: {
|
|
onSubmit(replicationMode, clusterMode, evt) {
|
|
// No data is submitted for disable request
|
|
return this.onSubmit(replicationMode, clusterMode, null, evt);
|
|
},
|
|
},
|
|
});
|