mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
2f4f6db133
no issue - add ember-suave dependency - upgrade grunt-jscs dependency - add a new .jscsrc for the client's tests directory that extends from client's base .jscsrc - separate client tests in Gruntfile jscs task so they pick up the test's .jscsrc - standardize es6 usage across client
15 lines
413 B
JavaScript
15 lines
413 B
JavaScript
import NewUserValidator from 'ghost/validators/new-user';
|
|
|
|
export default NewUserValidator.create({
|
|
properties: ['name', 'email', 'password', 'blogTitle'],
|
|
|
|
blogTitle(model) {
|
|
let blogTitle = model.get('blogTitle');
|
|
|
|
if (!validator.isLength(blogTitle, 1)) {
|
|
model.get('errors').add('blogTitle', 'Please enter a blog title.');
|
|
this.invalidate();
|
|
}
|
|
}
|
|
});
|