30 lines
804 B
JavaScript
30 lines
804 B
JavaScript
|
import Base from './_popup-base';
|
||
|
import Ember from 'ember';
|
||
|
const { computed } = Ember;
|
||
|
|
||
|
export default Base.extend({
|
||
|
model: computed.alias('params.firstObject'),
|
||
|
policyName: computed('params', function() {
|
||
|
return this.get('params').objectAt(1);
|
||
|
}),
|
||
|
|
||
|
messageArgs(model, policyName) {
|
||
|
return [model, policyName];
|
||
|
},
|
||
|
|
||
|
successMessage(model, policyName) {
|
||
|
return `Successfully removed '${policyName}' policy from ${model.id} `;
|
||
|
},
|
||
|
|
||
|
errorMessage(e, model, policyName) {
|
||
|
let error = e.errors ? e.errors.join(' ') : e.message;
|
||
|
return `There was a problem removing '${policyName}' policy - ${error}`;
|
||
|
},
|
||
|
|
||
|
transaction(model, policyName) {
|
||
|
let policies = model.get('policies');
|
||
|
model.set('policies', policies.without(policyName));
|
||
|
return model.save();
|
||
|
},
|
||
|
});
|