├── .gitignore ├── README.md ├── dashboard ├── app.html ├── app.js ├── components │ └── hook │ │ ├── hook.html │ │ └── index.js ├── firebase.js ├── index.js └── views │ ├── dashboard │ ├── dashboard.html │ ├── firebase-events.js │ └── index.js │ └── login │ ├── index.js │ └── login.html ├── firebase.json ├── firebase └── security-rules.json ├── index.js ├── package.json └── public ├── dashboard.js └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | node_modules/ 4 | npm-debug.log 5 | 6 | .env 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/README.md -------------------------------------------------------------------------------- /dashboard/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/dashboard/app.html -------------------------------------------------------------------------------- /dashboard/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/dashboard/app.js -------------------------------------------------------------------------------- /dashboard/components/hook/hook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/dashboard/components/hook/hook.html -------------------------------------------------------------------------------- /dashboard/components/hook/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/dashboard/components/hook/index.js -------------------------------------------------------------------------------- /dashboard/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/dashboard/firebase.js -------------------------------------------------------------------------------- /dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/dashboard/index.js -------------------------------------------------------------------------------- /dashboard/views/dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/dashboard/views/dashboard/dashboard.html -------------------------------------------------------------------------------- /dashboard/views/dashboard/firebase-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/dashboard/views/dashboard/firebase-events.js -------------------------------------------------------------------------------- /dashboard/views/dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/dashboard/views/dashboard/index.js -------------------------------------------------------------------------------- /dashboard/views/login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/dashboard/views/login/index.js -------------------------------------------------------------------------------- /dashboard/views/login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/dashboard/views/login/login.html -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/firebase.json -------------------------------------------------------------------------------- /firebase/security-rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/firebase/security-rules.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/package.json -------------------------------------------------------------------------------- /public/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/public/dashboard.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/firebase-webhooks/HEAD/public/index.html --------------------------------------------------------------------------------