├── .eslintignore ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── conditions └── url-match.js ├── manifest.js ├── package.json ├── policies ├── advanced-policy.js └── example-policy.js └── routes ├── hello-admin.js └── hello-eg.js /.eslintignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpressGateway/express-gateway-plugin-example/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpressGateway/express-gateway-plugin-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpressGateway/express-gateway-plugin-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpressGateway/express-gateway-plugin-example/HEAD/README.md -------------------------------------------------------------------------------- /conditions/url-match.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpressGateway/express-gateway-plugin-example/HEAD/conditions/url-match.js -------------------------------------------------------------------------------- /manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpressGateway/express-gateway-plugin-example/HEAD/manifest.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpressGateway/express-gateway-plugin-example/HEAD/package.json -------------------------------------------------------------------------------- /policies/advanced-policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpressGateway/express-gateway-plugin-example/HEAD/policies/advanced-policy.js -------------------------------------------------------------------------------- /policies/example-policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpressGateway/express-gateway-plugin-example/HEAD/policies/example-policy.js -------------------------------------------------------------------------------- /routes/hello-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpressGateway/express-gateway-plugin-example/HEAD/routes/hello-admin.js -------------------------------------------------------------------------------- /routes/hello-eg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpressGateway/express-gateway-plugin-example/HEAD/routes/hello-eg.js --------------------------------------------------------------------------------