mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
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>
19 lines
443 B
JavaScript
19 lines
443 B
JavaScript
import BaseValidator from './base';
|
|
import {isBlank} from '@ember/utils';
|
|
|
|
export default BaseValidator.create({
|
|
properties: ['name'],
|
|
|
|
name(model) {
|
|
let name = model.get('name');
|
|
let hasValidated = model.get('hasValidated');
|
|
|
|
if (isBlank(name)) {
|
|
model.get('errors').add('name', 'Please enter a benefit');
|
|
this.invalidate();
|
|
}
|
|
|
|
hasValidated.addObject('name');
|
|
}
|
|
});
|