├── .editorconfig ├── .gitignore ├── .prettierrc ├── README.md ├── apis_insomnia.json ├── package.json ├── src ├── rls.ts └── worker.ts ├── tsconfig.json └── wrangler.toml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/turso-row-level-security-demo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .dev.vars 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/turso-row-level-security-demo/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/turso-row-level-security-demo/HEAD/README.md -------------------------------------------------------------------------------- /apis_insomnia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/turso-row-level-security-demo/HEAD/apis_insomnia.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/turso-row-level-security-demo/HEAD/package.json -------------------------------------------------------------------------------- /src/rls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/turso-row-level-security-demo/HEAD/src/rls.ts -------------------------------------------------------------------------------- /src/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/turso-row-level-security-demo/HEAD/src/worker.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/turso-row-level-security-demo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/turso-row-level-security-demo/HEAD/wrangler.toml --------------------------------------------------------------------------------