33 lines
720 B
JavaScript
33 lines
720 B
JavaScript
|
import Ember from 'ember';
|
||
|
import { task } from 'ember-concurrency';
|
||
|
import DS from 'ember-data';
|
||
|
|
||
|
const { inject } = Ember;
|
||
|
|
||
|
const AuthConfigBase = Ember.Component.extend({
|
||
|
tagName: '',
|
||
|
model: null,
|
||
|
|
||
|
flashMessages: inject.service(),
|
||
|
|
||
|
saveModel: task(function*() {
|
||
|
try {
|
||
|
yield this.get('model').save();
|
||
|
} catch (err) {
|
||
|
// AdapterErrors are handled by the error-message component
|
||
|
// in the form
|
||
|
if (err instanceof DS.AdapterError === false) {
|
||
|
throw err;
|
||
|
}
|
||
|
return;
|
||
|
}
|
||
|
this.get('flashMessages').success('The configuration was saved successfully.');
|
||
|
}),
|
||
|
});
|
||
|
|
||
|
AuthConfigBase.reopenClass({
|
||
|
positionalParams: ['model'],
|
||
|
});
|
||
|
|
||
|
export default AuthConfigBase;
|