-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(app): correctly update project permissions on member delete * chore(app): update firestore indexes to new syntax * chore(app): switch to constant for displayNames path * chore: cleanup file descriptions in README * chore(functions): replace a few instances of `get` with destructuring * chore(functions): cleanup unused functions code
- Loading branch information
1 parent
ec93292
commit 4c6e214
Showing
29 changed files
with
233 additions
and
500 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
### Description | ||
## Description | ||
|
||
## Important Code | ||
|
||
### Check List | ||
## Additional Information | ||
|
||
- [ ] All test passed | ||
- [ ] Updated Any Relevant Docs | ||
## Relevant Issues | ||
|
||
<!-- Please add `closes`, `refs`, etc like so: | ||
- closes #1 | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,61 @@ | ||
{ | ||
"indexes": [ | ||
{ | ||
"collectionId": "projects", | ||
"collectionGroup": "events", | ||
"queryScope": "COLLECTION", | ||
"fields": [ | ||
{ | ||
"fieldPath": "createdBy", | ||
"mode": "ASCENDING" | ||
"fieldPath": "eventType", | ||
"order": "ASCENDING" | ||
}, | ||
{ | ||
"fieldPath": "createdAt", | ||
"mode": "DESCENDING" | ||
"order": "ASCENDING" | ||
} | ||
] | ||
}, | ||
{ | ||
"collectionId": "projects", | ||
"collectionGroup": "events", | ||
"queryScope": "COLLECTION", | ||
"fields": [ | ||
{ | ||
"fieldPath": "createdBy", | ||
"mode": "ASCENDING" | ||
"fieldPath": "eventType", | ||
"order": "ASCENDING" | ||
}, | ||
{ | ||
"fieldPath": "desc", | ||
"mode": "ASCENDING" | ||
"fieldPath": "createdAt", | ||
"order": "DESCENDING" | ||
} | ||
] | ||
}, | ||
{ | ||
"collectionId": "events", | ||
"collectionGroup": "projects", | ||
"queryScope": "COLLECTION", | ||
"fields": [ | ||
{ | ||
"fieldPath": "eventType", | ||
"mode": "ASCENDING" | ||
"fieldPath": "createdBy", | ||
"order": "ASCENDING" | ||
}, | ||
{ | ||
"fieldPath": "createdAt", | ||
"mode": "ASCENDING" | ||
"order": "DESCENDING" | ||
} | ||
] | ||
}, | ||
{ | ||
"collectionId": "events", | ||
"collectionGroup": "projects", | ||
"queryScope": "COLLECTION", | ||
"fields": [ | ||
{ | ||
"fieldPath": "eventType", | ||
"mode": "ASCENDING" | ||
"fieldPath": "createdBy", | ||
"order": "ASCENDING" | ||
}, | ||
{ | ||
"fieldPath": "createdAt", | ||
"mode": "DESCENDING" | ||
"fieldPath": "desc", | ||
"order": "ASCENDING" | ||
} | ||
] | ||
} | ||
] | ||
], | ||
"fieldOverrides": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
export const eventPathName = 'callGoogleApi' | ||
|
||
export const SCOPES = [ | ||
'https://www.googleapis.com/auth/devstorage.full_control', | ||
'https://www.googleapis.com/auth/cloud-platform' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.