37 lines
1 KiB
JavaScript
37 lines
1 KiB
JavaScript
import { inject as service } from '@ember/service';
|
|
import Component from '@ember/component';
|
|
import { task } from 'ember-concurrency';
|
|
import DS from 'ember-data';
|
|
|
|
const AuthConfigBase = Component.extend({
|
|
tagName: '',
|
|
model: null,
|
|
|
|
flashMessages: service(),
|
|
router: service(),
|
|
wizard: service(),
|
|
saveModel: task(function*() {
|
|
try {
|
|
yield this.model.save();
|
|
} catch (err) {
|
|
// AdapterErrors are handled by the error-message component
|
|
// in the form
|
|
if (err instanceof DS.AdapterError === false) {
|
|
throw err;
|
|
}
|
|
return;
|
|
}
|
|
if (this.wizard.currentMachine === 'authentication' && this.wizard.featureState === 'config') {
|
|
this.wizard.transitionFeatureMachine(this.wizard.featureState, 'CONTINUE');
|
|
}
|
|
this.router.transitionTo('vault.cluster.access.methods').followRedirects();
|
|
this.flashMessages.success('The configuration was saved successfully.');
|
|
}),
|
|
});
|
|
|
|
AuthConfigBase.reopenClass({
|
|
positionalParams: ['model'],
|
|
});
|
|
|
|
export default AuthConfigBase;
|