├── .eslintignore ├── .eslintrc.js ├── .firebaserc ├── .github └── FUNDING.yml ├── .gitignore ├── .node-version ├── .vscode └── settings.json ├── LICENSE ├── firebase.json ├── firestore.rules ├── package.json ├── src ├── index.ts ├── like.ts ├── model.ts └── path.ts ├── test ├── ruleHelper.ts ├── test.ts └── userDB.ts ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgr-ksmt/firestore-like-feature-example/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: sgr-ksmt 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgr-ksmt/firestore-like-feature-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 8.14.1 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgr-ksmt/firestore-like-feature-example/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgr-ksmt/firestore-like-feature-example/HEAD/LICENSE -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgr-ksmt/firestore-like-feature-example/HEAD/firebase.json -------------------------------------------------------------------------------- /firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgr-ksmt/firestore-like-feature-example/HEAD/firestore.rules -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgr-ksmt/firestore-like-feature-example/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgr-ksmt/firestore-like-feature-example/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/like.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgr-ksmt/firestore-like-feature-example/HEAD/src/like.ts -------------------------------------------------------------------------------- /src/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgr-ksmt/firestore-like-feature-example/HEAD/src/model.ts -------------------------------------------------------------------------------- /src/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgr-ksmt/firestore-like-feature-example/HEAD/src/path.ts -------------------------------------------------------------------------------- /test/ruleHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgr-ksmt/firestore-like-feature-example/HEAD/test/ruleHelper.ts -------------------------------------------------------------------------------- /test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgr-ksmt/firestore-like-feature-example/HEAD/test/test.ts -------------------------------------------------------------------------------- /test/userDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgr-ksmt/firestore-like-feature-example/HEAD/test/userDB.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgr-ksmt/firestore-like-feature-example/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgr-ksmt/firestore-like-feature-example/HEAD/yarn.lock --------------------------------------------------------------------------------