fix(crud): see 83eadf0929 and #37

This commit is contained in:
Mahdi Dibaiee 2017-02-04 22:17:34 +03:30
parent 85b52fd5ab
commit a6590a9650
2 changed files with 12 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "hapi-sequelize-crud",
"version": "2.9.2",
"version": "2.9.3",
"description": "Hapi plugin that automatically generates RESTful API for CRUD",
"main": "build/index.js",
"config": {

View File

@ -37,7 +37,6 @@ const register = (server, options = {}, next) => {
// Join tables
if (model.options.name.singular !== model.name) continue;
crud(server, model, options);
for (const key of Object.keys(model.associations)) {
const association = model.associations[key];
@ -93,6 +92,17 @@ const register = (server, options = {}, next) => {
}
}
// build the methods for each model now that we've defined all the
// associations
Object.keys(models).filter((modelName) => {
const model = models[modelName];
return model.options.name.singular === model.name;
}).forEach((modelName) => {
const model = models[modelName];
crud(server, model, options);
});
next();
};