tangled
alpha
login
or
join now
alpine.girlfag.club
/
refbot
0
fork
atom
SpinShare Referee Bot
refbot.ellite.dev/overlay
0
fork
atom
overview
issues
13
pulls
pipelines
blowing up
alpinesystem
4 weeks ago
a8dce370
c3e06133
+7
-1
1 changed file
expand all
collapse all
unified
split
state
generatedPools.js
+7
-1
state/generatedPools.js
···
35
35
{ upsert: true, new: true },
36
36
);
37
37
38
38
-
generatedPools = pools;
38
38
+
generatedPools = serialized.map(bracket => ({
39
39
+
name: bracket.name,
40
40
+
rounds: bracket.rounds.map(round => ({
41
41
+
name: round.name,
42
42
+
matches: round.matches.map(match => ({ charts: match.charts })),
43
43
+
})),
44
44
+
}));
39
45
}
40
46
41
47
async function loadGeneratedPoolsFromDB() {