├── .covignore ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── index.js ├── lib ├── acl.js ├── index.js ├── roles.js └── schema.js ├── package.json └── test └── index.js /.covignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toymachiner62/hapi-authorization/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toymachiner62/hapi-authorization/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toymachiner62/hapi-authorization/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toymachiner62/hapi-authorization/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toymachiner62/hapi-authorization/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toymachiner62/hapi-authorization/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /lib/acl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toymachiner62/hapi-authorization/HEAD/lib/acl.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toymachiner62/hapi-authorization/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toymachiner62/hapi-authorization/HEAD/lib/roles.js -------------------------------------------------------------------------------- /lib/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toymachiner62/hapi-authorization/HEAD/lib/schema.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toymachiner62/hapi-authorization/HEAD/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toymachiner62/hapi-authorization/HEAD/test/index.js --------------------------------------------------------------------------------