├── .gitignore ├── LICENSE ├── README.md ├── _helpers ├── db.js ├── role.js ├── send-email.js └── swagger.js ├── _middleware ├── authorize.js ├── error-handler.js └── validate-request.js ├── accounts ├── account.model.js ├── account.service.js ├── accounts.controller.js └── refresh-token.model.js ├── config.json ├── package.json ├── server.js └── swagger.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/README.md -------------------------------------------------------------------------------- /_helpers/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/_helpers/db.js -------------------------------------------------------------------------------- /_helpers/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/_helpers/role.js -------------------------------------------------------------------------------- /_helpers/send-email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/_helpers/send-email.js -------------------------------------------------------------------------------- /_helpers/swagger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/_helpers/swagger.js -------------------------------------------------------------------------------- /_middleware/authorize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/_middleware/authorize.js -------------------------------------------------------------------------------- /_middleware/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/_middleware/error-handler.js -------------------------------------------------------------------------------- /_middleware/validate-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/_middleware/validate-request.js -------------------------------------------------------------------------------- /accounts/account.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/accounts/account.model.js -------------------------------------------------------------------------------- /accounts/account.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/accounts/account.service.js -------------------------------------------------------------------------------- /accounts/accounts.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/accounts/accounts.controller.js -------------------------------------------------------------------------------- /accounts/refresh-token.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/accounts/refresh-token.model.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/server.js -------------------------------------------------------------------------------- /swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/node-mongo-signup-verification-api/HEAD/swagger.yaml --------------------------------------------------------------------------------