├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json ├── routes.js └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastify-auth-mongo-jwt/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastify-auth-mongo-jwt/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastify-auth-mongo-jwt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastify-auth-mongo-jwt/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastify-auth-mongo-jwt/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastify-auth-mongo-jwt/HEAD/package.json -------------------------------------------------------------------------------- /routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastify-auth-mongo-jwt/HEAD/routes.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/fastify-auth-mongo-jwt/HEAD/test.js --------------------------------------------------------------------------------