Skip to content

chadxz/waterline-custom-validations

Repository files navigation

custom-validations

Library to help build validation messages that mimic the structure of waterline 0.10 validation messages.

This can be useful if you are already using waterline, and don't want to have to translate their structure into some other arbitrary structure.

The waterline validation error format is:

{
  invalidAttributes: {
    fieldName1: [
      { rule: 'someRuleName', message: 'some friendly rule message' },
      { rule: 'anotherRuleName', message: 'another friendly rule message' }
    ],
    fieldName2: [
      { rule: 'someRuleName', message: 'some friendly rule message' }
    ]
  }
}

actual waterline objects have a lot more properties/fields than this, as well as backwards compatibility for Sails 0.9x validation messages that use the ValidationError property to hold the validation errors. To see a full implementation of the waterline validation errors, see the WLValidationError source in Waterline

development

To run the tests, clone the repo, then

  • npm install
  • npm test

You can also get code coverage on the tests by running

npm run cover

contributing

To contribute, see CONTRIBUTING.md

license

MIT

About

a library to help build validation messages that mimic the structure of waterline 0.10 validation messages

Resources

License

Stars

Watchers

Forks

Packages

No packages published