Skip to content

Commit 24a2b01

Browse files
committed
fix: rename vex/tix collections in services
1 parent cfc9045 commit 24a2b01

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/services/tix_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async def read_user_tixs(self, user_id: str) -> list[TIXResponse]:
4545
},
4646
{
4747
"$lookup": {
48-
"from": "tix",
48+
"from": "tixs",
4949
"localField": "tixs",
5050
"foreignField": "_id",
5151
"as": 'lookup'

app/services/vex_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async def read_user_vexs(self, user_id: str) -> list[VEXResponse]:
4545
},
4646
{
4747
"$lookup": {
48-
"from": "vex",
48+
"from": "vexs",
4949
"localField": "vexs",
5050
"foreignField": "_id",
5151
"as": 'lookup'

0 commit comments

Comments
 (0)