affe6743e5
refs: https://github.com/TryGhost/Team/issues/1145 - this should allow us to remove the /products endpoint in v5 It avoids: - `kg-product-card`, that really is meant to say product - `product-cadence` on offers Co-authored-by: Rishabh <zrishabhgarg@gmail.com>
23 lines
516 B
JavaScript
23 lines
516 B
JavaScript
import EmberObject, {computed} from '@ember/object';
|
|
import ValidationEngine from 'ghost-admin/mixins/validation-engine';
|
|
import {isBlank} from '@ember/utils';
|
|
|
|
export default EmberObject.extend(ValidationEngine, {
|
|
name: '',
|
|
isNew: false,
|
|
|
|
validationType: 'tierBenefitItem',
|
|
|
|
isComplete: computed('name', function () {
|
|
let {name} = this;
|
|
|
|
return !isBlank(name);
|
|
}),
|
|
|
|
isBlank: computed('name', function () {
|
|
let {name} = this;
|
|
|
|
return isBlank(name);
|
|
})
|
|
});
|