├── .gitignore ├── .prettierrc ├── .travis.yml ├── .vscode └── settings.json ├── package.json ├── source ├── config │ ├── config.ts │ └── logging.ts ├── controllers │ └── user.ts ├── functions │ └── signJTW.ts ├── interfaces │ └── user.ts ├── middleware │ └── extractJWT.ts ├── models │ └── user.ts ├── routes │ └── user.ts └── server.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeythelantern/RestfulAPI-JSONWebTokens-Mongo/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeythelantern/RestfulAPI-JSONWebTokens-Mongo/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeythelantern/RestfulAPI-JSONWebTokens-Mongo/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeythelantern/RestfulAPI-JSONWebTokens-Mongo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeythelantern/RestfulAPI-JSONWebTokens-Mongo/HEAD/package.json -------------------------------------------------------------------------------- /source/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeythelantern/RestfulAPI-JSONWebTokens-Mongo/HEAD/source/config/config.ts -------------------------------------------------------------------------------- /source/config/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeythelantern/RestfulAPI-JSONWebTokens-Mongo/HEAD/source/config/logging.ts -------------------------------------------------------------------------------- /source/controllers/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeythelantern/RestfulAPI-JSONWebTokens-Mongo/HEAD/source/controllers/user.ts -------------------------------------------------------------------------------- /source/functions/signJTW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeythelantern/RestfulAPI-JSONWebTokens-Mongo/HEAD/source/functions/signJTW.ts -------------------------------------------------------------------------------- /source/interfaces/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeythelantern/RestfulAPI-JSONWebTokens-Mongo/HEAD/source/interfaces/user.ts -------------------------------------------------------------------------------- /source/middleware/extractJWT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeythelantern/RestfulAPI-JSONWebTokens-Mongo/HEAD/source/middleware/extractJWT.ts -------------------------------------------------------------------------------- /source/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeythelantern/RestfulAPI-JSONWebTokens-Mongo/HEAD/source/models/user.ts -------------------------------------------------------------------------------- /source/routes/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeythelantern/RestfulAPI-JSONWebTokens-Mongo/HEAD/source/routes/user.ts -------------------------------------------------------------------------------- /source/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeythelantern/RestfulAPI-JSONWebTokens-Mongo/HEAD/source/server.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeythelantern/RestfulAPI-JSONWebTokens-Mongo/HEAD/tsconfig.json --------------------------------------------------------------------------------