This commit is contained in:
parent
10def65a3f
commit
397d8f658e
|
@ -24,7 +24,8 @@ module.exports = Self => {
|
|||
});
|
||||
|
||||
Self.validateAsync('fi', fiInvalid, {
|
||||
message: 'The first two values are letters'});
|
||||
message: 'Invalid TIN'
|
||||
});
|
||||
|
||||
async function fiInvalid(err, done) {
|
||||
const filter = {
|
||||
|
|
|
@ -73,8 +73,7 @@ module.exports = Self => {
|
|||
done();
|
||||
}
|
||||
|
||||
Self.validateAsync('nif', nifInvalid, {
|
||||
message: 'The first two values are letters'});
|
||||
Self.validateAsync('nif', nifInvalid);
|
||||
|
||||
async function nifInvalid(err, done) {
|
||||
const filter = {
|
||||
|
|
Loading…
Reference in New Issue