10 lines
209 B
JavaScript
10 lines
209 B
JavaScript
|
module.exports = Self => {
|
||
|
Self.validatesPresenceOf('name', {
|
||
|
message: 'Name cannot be blank'
|
||
|
});
|
||
|
|
||
|
Self.validatesUniquenessOf('id', {
|
||
|
message: 'This name already exist.'
|
||
|
});
|
||
|
};
|