├── .gitignore ├── Makefile ├── README.md ├── index.js ├── lib ├── actionUtil.js ├── actions │ ├── add.js │ ├── create.js │ ├── destroy.js │ ├── find.js │ ├── findOne.js │ ├── populate.js │ ├── remove.js │ └── update.js ├── generalUtil.js └── index.js ├── package.json └── test ├── .boilerplate ├── actions ├── add.js ├── create.js ├── destroy.js ├── find.js ├── findOne.js ├── populate.js ├── remove.js └── update.js ├── auth.scheme.js ├── models.definition.js ├── models.fixtures.json ├── options ├── _private.count.js ├── actAsUser.js ├── createdLocation.js ├── deletedFlag.js ├── omit.js ├── pkAttr.js └── prefix.js ├── server.js └── server.setup.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /lib/actionUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/lib/actionUtil.js -------------------------------------------------------------------------------- /lib/actions/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/lib/actions/add.js -------------------------------------------------------------------------------- /lib/actions/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/lib/actions/create.js -------------------------------------------------------------------------------- /lib/actions/destroy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/lib/actions/destroy.js -------------------------------------------------------------------------------- /lib/actions/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/lib/actions/find.js -------------------------------------------------------------------------------- /lib/actions/findOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/lib/actions/findOne.js -------------------------------------------------------------------------------- /lib/actions/populate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/lib/actions/populate.js -------------------------------------------------------------------------------- /lib/actions/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/lib/actions/remove.js -------------------------------------------------------------------------------- /lib/actions/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/lib/actions/update.js -------------------------------------------------------------------------------- /lib/generalUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/lib/generalUtil.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/package.json -------------------------------------------------------------------------------- /test/.boilerplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/.boilerplate -------------------------------------------------------------------------------- /test/actions/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/actions/add.js -------------------------------------------------------------------------------- /test/actions/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/actions/create.js -------------------------------------------------------------------------------- /test/actions/destroy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/actions/destroy.js -------------------------------------------------------------------------------- /test/actions/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/actions/find.js -------------------------------------------------------------------------------- /test/actions/findOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/actions/findOne.js -------------------------------------------------------------------------------- /test/actions/populate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/actions/populate.js -------------------------------------------------------------------------------- /test/actions/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/actions/remove.js -------------------------------------------------------------------------------- /test/actions/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/actions/update.js -------------------------------------------------------------------------------- /test/auth.scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/auth.scheme.js -------------------------------------------------------------------------------- /test/models.definition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/models.definition.js -------------------------------------------------------------------------------- /test/models.fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/models.fixtures.json -------------------------------------------------------------------------------- /test/options/_private.count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/options/_private.count.js -------------------------------------------------------------------------------- /test/options/actAsUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/options/actAsUser.js -------------------------------------------------------------------------------- /test/options/createdLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/options/createdLocation.js -------------------------------------------------------------------------------- /test/options/deletedFlag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/options/deletedFlag.js -------------------------------------------------------------------------------- /test/options/omit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/options/omit.js -------------------------------------------------------------------------------- /test/options/pkAttr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/options/pkAttr.js -------------------------------------------------------------------------------- /test/options/prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/options/prefix.js -------------------------------------------------------------------------------- /test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/server.js -------------------------------------------------------------------------------- /test/server.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinivy/bedwetter/HEAD/test/server.setup.js --------------------------------------------------------------------------------