improved error messages in models #266

Merged
bones7242 merged 1 commit from model-error-messages into master 2017-11-14 23:54:04 +01:00
2 changed files with 2 additions and 2 deletions

View file

@ -112,7 +112,7 @@ module.exports = (sequelize, { STRING, BOOLEAN, INTEGER, TEXT }) => {
.then(result => {
switch (result.length) {
case 0:
throw new Error('That is an invalid channel name');
throw new Error('No channel(s) found with that channel name');
default:
return resolve(returnShortId(result, longChannelId));
}

View file

@ -169,7 +169,7 @@ module.exports = (sequelize, { STRING, BOOLEAN, INTEGER, TEXT, ARRAY, DECIMAL, D
.then(result => {
switch (result.length) {
case 0:
throw new Error('That is an invalid claim name');
throw new Error('No claim(s) found with that claim name');
default:
resolve(returnShortId(result, claimId));
}