├── .env.example ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── app.json ├── package.json ├── render.yaml └── src ├── index.js └── validations.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoom/meetingsdk-auth-endpoint-sample/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | node_modules 3 | .env 4 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npm run format && git add . 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoom/meetingsdk-auth-endpoint-sample/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoom/meetingsdk-auth-endpoint-sample/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoom/meetingsdk-auth-endpoint-sample/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoom/meetingsdk-auth-endpoint-sample/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoom/meetingsdk-auth-endpoint-sample/HEAD/app.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoom/meetingsdk-auth-endpoint-sample/HEAD/package.json -------------------------------------------------------------------------------- /render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoom/meetingsdk-auth-endpoint-sample/HEAD/render.yaml -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoom/meetingsdk-auth-endpoint-sample/HEAD/src/index.js -------------------------------------------------------------------------------- /src/validations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoom/meetingsdk-auth-endpoint-sample/HEAD/src/validations.js --------------------------------------------------------------------------------