mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
72156c7f89
fixes #3072 - Change router to handle /ember/setup/ - Adjust doSignup to also handle setup - Adjust tests and add new where necessary - Add setup controller, setup validation, setup route - Adjust casper emberSetup to handle new setup
35 lines
945 B
JavaScript
35 lines
945 B
JavaScript
var SetupValidator = Ember.Object.create({
|
|
validate: function (model) {
|
|
var data = model.getProperties('blogTitle', 'name', 'email', 'password'),
|
|
validationErrors = [];
|
|
|
|
if (!validator.isLength(data.blogTitle || '', 1)) {
|
|
validationErrors.push({
|
|
message: 'Please enter a blog title.'
|
|
});
|
|
}
|
|
|
|
if (!validator.isLength(data.name || '', 1)) {
|
|
validationErrors.push({
|
|
message: 'Please enter a name.'
|
|
});
|
|
}
|
|
|
|
if (!validator.isEmail(data.email)) {
|
|
validationErrors.push({
|
|
message: 'Invalid Email.'
|
|
});
|
|
}
|
|
|
|
if (!validator.isLength(data.password || '', 1)) {
|
|
validationErrors.push({
|
|
message: 'Please enter a password.'
|
|
});
|
|
}
|
|
|
|
return validationErrors;
|
|
}
|
|
});
|
|
|
|
export default SetupValidator;
|