Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Should customize error message #9

Open
lucasdaiki opened this issue Jul 29, 2016 · 0 comments
Open

Should customize error message #9

lucasdaiki opened this issue Jul 29, 2016 · 0 comments

Comments

@lucasdaiki
Copy link

When a entity is not valid, the error property is:

{ property1: { errors: [ 'Required undefined `property1` was not specified in `FakeEntity`.' ] } }

But the error message is not friendly to application user.

I suggest to add a new param in validation:

class FakeEntity extends Speck {
    static SCHEMA = {
        property1: {
            validator: Proptypes.number.isRequired,
            errorMessage: 'Property1 must be a number'
        }
    }
}

So, the error message will be:

{ property1: { errors: ['Property1 must be a number' ] } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant