Ghost/ghost/admin/app/validators/tier-benefit-item.js
Kevin Ansfield 786e0ac9c5
Updated ValidationEngine to support bare native class models (#15567)
no issue

- if a plain native class instance with tracked properties is validated against the `ValidationEngine` and it's associated validators would cause errors by assuming that the instance has a `.get()` method
- updated all model access in `ValidationEngine` and the validators to use direct property access which works for both native class and `EmberObject` instances
2022-10-07 20:13:42 +01:00

19 lines
422 B
JavaScript

import BaseValidator from './base';
import {isBlank} from '@ember/utils';
export default BaseValidator.create({
properties: ['name'],
name(model) {
let name = model.name;
let hasValidated = model.hasValidated;
if (isBlank(name)) {
model.errors.add('name', 'Please enter a benefit');
this.invalidate();
}
hasValidated.addObject('name');
}
});