6 lines
117 B
JavaScript
6 lines
117 B
JavaScript
|
module.exports = Self => {
|
||
|
Self.validatesPresenceOf('name', {
|
||
|
message: 'Name cannot be blank'
|
||
|
});
|
||
|
};
|