diff options
| author | jrshi <jrs9538@g.rit.edu> | 2025-11-16 16:02:38 -0500 |
|---|---|---|
| committer | jrshi <jrs9538@g.rit.edu> | 2025-11-16 16:02:38 -0500 |
| commit | 0b43e258054b450f5007ef4d4fa34dacba2d8a9c (patch) | |
| tree | af8f64e4bdb6074fe2fb34c993850b6d81ce61de /data/personaldb.json | |
| parent | 343d0baaaf718bfc9959484d187c4df1e171335e (diff) | |
| parent | af9f559a2ee427905c39363643bac2e7878fb10c (diff) | |
| download | designproject-design-6-0b43e258054b450f5007ef4d4fa34dacba2d8a9c.tar.gz designproject-design-6-0b43e258054b450f5007ef4d4fa34dacba2d8a9c.tar.bz2 designproject-design-6-0b43e258054b450f5007ef4d4fa34dacba2d8a9c.zip | |
Merge branch 'league-play-refactoring' of https://github.com/RIT-SWEN-262/designproject-design-6 into league-play-refactoringleague-play-refactoring
Merging?
Diffstat (limited to '')
| -rw-r--r-- | data/personaldb.json | 46 |
1 files changed, 32 insertions, 14 deletions
diff --git a/data/personaldb.json b/data/personaldb.json index 9b9709d..2aa4ec7 100644 --- a/data/personaldb.json +++ b/data/personaldb.json @@ -1,5 +1,19 @@ [ { + "clubs": [], + "nextClubId": 1, + "username": "test", + "passwordHash": 3556498, + "fullName": "test", + "courses": [ + 999 + ], + "rounds": [], + "invites": [], + "joinedTeam": null, + "team": null + }, + { "clubs": [ { "id": 1, @@ -61,8 +75,8 @@ "clubUsed": 2 } ], - "swingCount": 3, - "distance": 106 + "distance": 106, + "swingCount": 3 }, { "holeNumber": 2, @@ -76,17 +90,17 @@ "clubUsed": 1 } ], - "swingCount": 2, - "distance": 1002 + "distance": 1002, + "swingCount": 2 } ], "currentHoleIndex": 2, - "totalSwings": 5, - "totalDistance": 1108.0, "currentHole": { "number": 3, "par": 4 - } + }, + "totalSwings": 5, + "totalDistance": 1108.0 }, { "course": 1, @@ -112,20 +126,22 @@ "clubUsed": 1 } ], - "swingCount": 1, - "distance": 204 + "distance": 204, + "swingCount": 1 } ], "currentHoleIndex": 9, - "totalSwings": 1, - "totalDistance": 204.0, "currentHole": { "number": 10, "par": 3 - } + }, + "totalSwings": 1, + "totalDistance": 204.0 } ], - "invites": [] + "invites": [], + "joinedTeam": null, + "team": null }, { "clubs": [], @@ -135,6 +151,8 @@ "fullName": "tyler f", "courses": [], "rounds": [], - "invites": [] + "invites": [], + "joinedTeam": null, + "team": null } ]
\ No newline at end of file |
