-
Notifications
You must be signed in to change notification settings - Fork 4
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
Integration with FeathersJS #17
Labels
documentation
Improvements or additions to documentation
Comments
Closed
@justraman I had the same issue. It seems that was caused by the /auth (authentication) service. Feathers internal authentication service doesn't have options and Model properties. The workaround is simple, just check the existence of the properties before using them:
|
This works for me |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Follow these steps to automatically generate model schemas for feathers-swagger.
src/sequelize-to-json-schemas.js
schema configuration file:src/app.js
so that it looks similar to:Model specific overrides
Model specific overrides MUST be specified in your sequelize model file as
options.jsonSchema
so they get picked up automatically when generating the model schemas. E.g.Configuration Options
Please refer to the README for all available configuration options.
The text was updated successfully, but these errors were encountered: