feat: Add TripEndService to manage finished trips and prompt for deletion
This commit is contained in:
31
firestore.indexes.json
Normal file
31
firestore.indexes.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"indexes": [
|
||||
{
|
||||
"collectionGroup": "tripInvitations",
|
||||
"queryScope": "COLLECTION",
|
||||
"fields": [
|
||||
{ "fieldPath": "inviteeId", "order": "ASCENDING" },
|
||||
{ "fieldPath": "status", "order": "ASCENDING" },
|
||||
{ "fieldPath": "createdAt", "order": "DESCENDING" }
|
||||
]
|
||||
},
|
||||
{
|
||||
"collectionGroup": "tripInvitations",
|
||||
"queryScope": "COLLECTION",
|
||||
"fields": [
|
||||
{ "fieldPath": "inviteeId", "order": "ASCENDING" },
|
||||
{ "fieldPath": "createdAt", "order": "DESCENDING" }
|
||||
]
|
||||
},
|
||||
{
|
||||
"collectionGroup": "tripInvitations",
|
||||
"queryScope": "COLLECTION",
|
||||
"fields": [
|
||||
{ "fieldPath": "tripId", "order": "ASCENDING" },
|
||||
{ "fieldPath": "inviteeId", "order": "ASCENDING" },
|
||||
{ "fieldPath": "status", "order": "ASCENDING" }
|
||||
]
|
||||
}
|
||||
],
|
||||
"fieldOverrides": []
|
||||
}
|
||||
Reference in New Issue
Block a user