salix/services/client/common/models/client-contact.js

12 lines
261 B
JavaScript

module.exports = Self => {
require('../methods/client-contact/crud')(Self);
Self.validatesPresenceOf('name', {
message: 'Name cannot be blank'
});
Self.validatesPresenceOf('phone', {
message: 'Phone cannot be blank'
});
};