Skip to content

Commit

Permalink
feat: add feedback (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
js-machine authored Oct 3, 2019
1 parent c53926c commit c65bbea
Show file tree
Hide file tree
Showing 15 changed files with 339 additions and 167 deletions.
20 changes: 18 additions & 2 deletions firebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
{
"target": "js-machine-admin",
"public": "js_machine_admin/build",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "/getDigests",
Expand Down Expand Up @@ -33,6 +37,10 @@
"source": "/uploadDigestMd",
"function": "uploadDigestMd"
},
{
"source": "/getFeedbacks",
"function": "getFeedbacks"
},
{
"source": "**",
"destination": "/index.html"
Expand All @@ -42,7 +50,11 @@
{
"target": "js-machine-app",
"public": "js_machine_front/build",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "/getAllEvents",
Expand All @@ -56,6 +68,10 @@
"source": "/getDigests",
"function": "getDigests"
},
{
"source": "/sendFeedback",
"function": "sendFeedback"
},
{
"source": "**",
"destination": "/index.html"
Expand Down
Loading

0 comments on commit c65bbea

Please sign in to comment.