├── .gitignore ├── .vscode └── launch.json ├── README.md ├── middlewares └── ServiceGuard.js ├── moleculer.config.js ├── package.json ├── public ├── banner.png ├── favicon.ico └── index.html └── services ├── api.service.js ├── guard.service.js ├── posts.service.js └── users.service.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebob/moleculer-protect-services/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebob/moleculer-protect-services/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebob/moleculer-protect-services/HEAD/README.md -------------------------------------------------------------------------------- /middlewares/ServiceGuard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebob/moleculer-protect-services/HEAD/middlewares/ServiceGuard.js -------------------------------------------------------------------------------- /moleculer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebob/moleculer-protect-services/HEAD/moleculer.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebob/moleculer-protect-services/HEAD/package.json -------------------------------------------------------------------------------- /public/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebob/moleculer-protect-services/HEAD/public/banner.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebob/moleculer-protect-services/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebob/moleculer-protect-services/HEAD/public/index.html -------------------------------------------------------------------------------- /services/api.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebob/moleculer-protect-services/HEAD/services/api.service.js -------------------------------------------------------------------------------- /services/guard.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebob/moleculer-protect-services/HEAD/services/guard.service.js -------------------------------------------------------------------------------- /services/posts.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebob/moleculer-protect-services/HEAD/services/posts.service.js -------------------------------------------------------------------------------- /services/users.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebob/moleculer-protect-services/HEAD/services/users.service.js --------------------------------------------------------------------------------