mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-12-01 17:53:40 +00:00
20 lines
404 B
JavaScript
20 lines
404 B
JavaScript
import Ember from 'ember';
|
|
|
|
const { computed } = Ember;
|
|
|
|
export default Ember.Component.extend({
|
|
cluster: null,
|
|
replicationMode: null,
|
|
secondaries: null,
|
|
onRevoke: Function.prototype,
|
|
|
|
addRoute: computed('replicationMode', function() {}),
|
|
revokeRoute: computed('replicationMode', function() {}),
|
|
|
|
actions: {
|
|
onConfirmRevoke() {
|
|
this.get('onRevoke')(...arguments);
|
|
},
|
|
},
|
|
});
|