working runner w/o spotify
This commit is contained in:
@@ -20,7 +20,7 @@ export function createMatchesService(pb: PocketBase) {
|
||||
if (!match) throw new Error("Match not found")
|
||||
|
||||
const result = await pb.collection("matches").getFullList({
|
||||
filter: `tournament="${match.tournament.id}" && (home_from_lid = ${match.lid} || away_from_lid = ${match.lid})`,
|
||||
filter: `tournament="${match.tournament.id}" && (home_from_lid = ${match.lid} || away_from_lid = ${match.lid}) && bye = false`,
|
||||
expand: "tournament, home, away",
|
||||
});
|
||||
|
||||
@@ -51,8 +51,10 @@ export function createMatchesService(pb: PocketBase) {
|
||||
|
||||
async updateMatch(id: string, data: Partial<MatchInput>): Promise<Match> {
|
||||
logger.info("PocketBase | Updating match", { id, data });
|
||||
const result = await pb.collection("matches").update<Match>(id, data);
|
||||
return result;
|
||||
const result = await pb.collection("matches").update<Match>(id, data, {
|
||||
expand: 'home, away'
|
||||
});
|
||||
return transformMatch(result);
|
||||
},
|
||||
|
||||
async deleteMatch(id: string): Promise<void> {
|
||||
|
||||
Reference in New Issue
Block a user