mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
18 lines
479 B
JavaScript
18 lines
479 B
JavaScript
|
import BaseValidator from './base';
|
||
|
import validator from 'validator';
|
||
|
|
||
|
export default BaseValidator.create({
|
||
|
properties: ['name'],
|
||
|
|
||
|
name(model) {
|
||
|
if (!model.name) {
|
||
|
model.errors.add('name', 'Please enter Name.');
|
||
|
this.invalidate();
|
||
|
}
|
||
|
if (!validator.isLength(model.name || '', 0, 191)) {
|
||
|
model.errors.add('name', 'Name cannot be longer than 191 characters.');
|
||
|
this.invalidate();
|
||
|
}
|
||
|
}
|
||
|
});
|