mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-02 19:47:54 +00:00
20 lines
475 B
JavaScript
20 lines
475 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
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);
|
|
},
|
|
},
|
|
});
|