Skip to content

Commit c3b48f1

Browse files
committed
tags;readme
1 parent fb16bd3 commit c3b48f1

5 files changed

Lines changed: 9 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ SurfTimer FastAPI
1212
- [x] ck_bonus
1313
- [x] ck_checkpoints
1414
- [x] ck_latestrecords
15-
- [x] ck_maptier - Partially
16-
- [x] ck_playeroptions2 - Partially
15+
- [x] ck_maptier
16+
- [x] ck_playeroptions2
1717
- [x] ck_playerrank - Partially
1818
- [x] ck_playertemp - Partially
1919
- [ ] ck_playertimes

globals.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@
6565
"name": "Point Calculation",
6666
"description": "Queries that are involved in **player points** calculation",
6767
},
68+
{
69+
"name": "Wipe",
70+
"description": "Wiping player related data",
71+
},
6872
]
6973

7074
# Whitelisted IPs

surftimer/ck_bonus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ def getRankSteamIdBonus(
919919
@router.delete(
920920
"/surftimer/deleteWipePlayerBonus",
921921
name="Wipe Player Bonus Times",
922-
tags=["ck_bonus", "strays"],
922+
tags=["ck_bonus", "strays", "Wipe"],
923923
)
924924
def deleteWipePlayerBonus(
925925
request: Request,

surftimer/ck_checkpoints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ async def selectStageAttempts(
309309
@router.delete(
310310
"/surftimer/deleteWipePlayerCheckpoints",
311311
name="Wipe Player Checkpoint",
312-
tags=["ck_checkpoints", "strays"],
312+
tags=["ck_checkpoints", "strays", "Wipe"],
313313
)
314314
async def deleteWipePlayerCheckpoints(
315315
request: Request,

surftimer/ck_latestrecords.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ async def insertLatestRecord(request: Request, response: Response, data: LatestR
9595
@router.delete(
9696
"/surftimer/deleteWipePlayerLatestRecords",
9797
name="Wipe Player Latest Records",
98-
tags=["ck_latestrecords", "strays"],
98+
tags=["ck_latestrecords", "strays", "Wipe"],
9999
)
100100
async def deleteWipePlayerLatestRecords(
101101
request: Request,

0 commit comments

Comments
 (0)