c642b814d4
* move replication-actions component into core addon so that secondary recovery works * move the rest of replication action components
15 lines
255 B
JavaScript
15 lines
255 B
JavaScript
import Component from '@ember/component';
|
|
|
|
export default Component.extend({
|
|
onSubmit() {},
|
|
replicationMode: null,
|
|
replicationDisplayMode: null,
|
|
model: null,
|
|
|
|
actions: {
|
|
onSubmit() {
|
|
return this.onSubmit(...arguments);
|
|
},
|
|
},
|
|
});
|